-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (36 loc) · 1.29 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<title>Semanticify</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.4.2/underscore-min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/backbone.js/0.9.2/backbone-min.js"></script>
<script src="data.js"></script>
<script src="namespace.js"></script>
<script src="url.js"></script>
<script src="page.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<h1>Semantic-ify</h1>
<div id="container">
<div id="search-container">
<label for="search-input">Add tag</label>
<input id="search-input" type="text">
<div id="selected-tag-container">
</div>
</div>
<div id="selected-urls-container">
<h2>Selected</h2>
<ul id="selected-urls">
</ul>
</div>
<div id="not-selected-urls-container">
<h2>Unselected</h2>
<ul id="unselected-urls">
</ul>
</div>
</div>
</body>
</html>