-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
33 lines (25 loc) · 979 Bytes
/
example.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
<!DOCTYPE HTML>
<html>
<head>
<title>tag box</title>
<link rel="stylesheet" type="text/css" href="style/layout.css">
<link rel="stylesheet" type="text/css" href="style/tag_box.css">
<script type="text/javascript" src="scripts/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="scripts/tagbox.js"></script>
<script type="text/javascript" src="scripts/logic.js"></script>
<script type="text/javascript" src="scripts/live_code.js"></script>
</head>
<body>
<h1>press <kbd>enter</kbd>, <kbd>,</kbd>, <kbd>space</kbd> or <kbd>tab</kbd> to separate tags</h1>
<div id="form_container">
<form id="the_form" accept-charset="UTF-8" action="/form_action" method="post">
<div id="tag_box">
</div>
<input class="submit_btn" name="commit" type="submit" value="submit (dummy)" disabled="true">
</form>
</div>
<div id="live_code_container">
<pre><code id="live_code_preview"></code></pre>
</div>
</body>
</html>