-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (22 loc) · 821 Bytes
/
index.html
File metadata and controls
28 lines (22 loc) · 821 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
<!DOCTYPE html>
<html>
<head>
<title>This app is awesome</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<table style="width:100%" id="table">
</table>
<form id="form">
Tag: <input type="text" name="tag" id="tag">
<button type="button" onclick="newTag()">add</button>
<button type="button" onclick="clean()">clear</button>
</form>
</body>
<script type="text/javascript" src="/js/jquery-2.2.1.js"></script>
<script type="text/javascript" src="/js/underscore.js"></script>
<script type="text/javascript" src="/js/getAccess.js"></script>
<script type="text/javascript" src="/js/jsonWithTag.js"></script>
<script type="text/javascript" src="/js/getText.js"></script>
<script type="text/javascript" src="/js/michaeltest.js"></script>
</html>