-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 956 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<head>
</head>
<body>
<div class = 'testIT'>
<div class = 'foo'></div>
<div class = 'foo.bar'></div>
<div class = 'foo.bar.test'></div>
<div class = 'foo.next'></div>
</div>
<div id='scroll'>
<div id='scrollBar'></div>
</div>
<div id='progressBar'></div>
<div id='form'></div><div id='form1'></div>
<form id='form3' target="_blank" method="post">
<input id='nameInput' type="text" name="fname" required>
<input type="submit" value="Submit">
</form>
<div id='accordian'></div>
<div id='toDo'></div>
<div id='tableIn'></div>
</div>
<!-- <script src ="./src/test.js"> -->
<script>
var versionUpdate = (new Date()).getTime();
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "./dist/main.js?v=" + versionUpdate;
document.body.appendChild(script);
</script>
</body>