28 lines
612 B
HTML
28 lines
612 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Small tests</title>
|
|
<link href="index.css" rel="stylesheet"/>
|
|
<style>
|
|
.tag-input-row {
|
|
display: block ruby;
|
|
box-sizing: border-box;
|
|
margin-right: 2em;
|
|
width: 100%;
|
|
}
|
|
|
|
.bordered {
|
|
border: 1px solid black;
|
|
display: block;
|
|
padding: 0.5em;
|
|
border-radius: 0.5em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="maindiv">'maindiv' not attached</div>
|
|
<div id="extradiv">'extradiv' not attached</div>
|
|
<script src="./test.ts"></script>
|
|
</body>
|
|
</html>
|