-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (38 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>The Human Menu</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1 class="title">The Human Menu</h1>
<div class="top-right">
<a href="https://www.github.com/good-labs/human-menu" target="_blank">
<i style='color:white'class="fa fa-2x fa-github"></i></a>
</div>
<div class="container">
<h3>I want to...</h3>
<ul id="suggestions">
</ul><br>
<button id="refreshButton">REFRESH</button>
<button id="resetButton" style="float:right">RESET</button>
</div>
<div class="container">
<h3>I've done...</h3>
<ul id="done">
</ul>
</div>
<div class="container">
<p>
<input id="newItem" type="text" placeholder="add a new item"><button id="addButton">ADD</button>
</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="assets/js/human-menu.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/notify/0.4.2/notify.min.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>