-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 1.68 KB
/
index.html
File metadata and controls
63 lines (57 loc) · 1.68 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DOMaster demo</title>
<script src="./lib/dom_master.js"></script>
<link rel="stylesheet" type="text/css" href="./demo/demo.css">
<script src="./demo/demo.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.js"></script>
<link href="https://fonts.googleapis.com/css?family=Rubik+Mono+One" rel="stylesheet">
</head>
<body>
<h1>DOMaster</h1>
<div class="content">
<div class="letters">
<h3>Letters</h3>
<ul class="letter-list">
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
<li>E</li>
</ul>
<button id="add-letter">Add a letter</button>
<button id="remove-letter">Remove a letter</button>
</div>
<div class="words">
<h3>Words</h3>
<ul class="word-list">
<li id="Lemon">Lemon</li>
<li id="Fantastic">Fantastic</li>
<li id="Scrumptious">Scrumptious</li>
<li id="Sour">Sour</li>
<li id="Banana">Banana</li>
</ul>
<form id="add-word">
<label>
<input id="new-word" type="text" placeholder="Add a word"/>
</label>
<input type="submit"></input>
</form>
<button id="empty-word-list">Empty the list</button>
</div>
<!-- <div id="dictionary">
<h3>Fetch a GIF</h3>
<div id="gif">
</div>
<form id="word-search">
<label>
<input id="search-term" type="text"/>
</label>
<input type="submit"></input>
</form>
</div>
</div> -->
</body>
</html>