-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (35 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<title>todo</title>
<meta http-equiv="Content-Type" content="application/x-web-app-manifest+json; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="css/font-awesome-4.2.0/css/font-awesome.min.css">
<link rel='stylesheet' type='text/css' href='css/custom.css'>
</head>
<body>
<div id="container">
<div id="bar">
<h4>ToDo</h4>
<span id="actions">
<i class='fa fa-undo'></i>
<i class='fa fa-repeat'></i>
</span>
</div>
<div id="todo_list_container">
<p id="info"></p>
<ul id="todo_items">
</ul>
<span id="add_todo">
<span id="add_button_container"><button id="add" disabled>+</button></span>
<span id="new_item_textarea_container"><textarea id="new_todo_item" placeholder="Enter New Task" spellcheck="true"></textarea></span>
<span id="star_container"><i class='fa fa-star'></i></span>
</span>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.ui.min.js"></script>
<script type="text/javascript" src="js/jquery.elastic.js"></script>
<script type="text/javascript" src="js/jquery.nicescroll.min.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
</body>
</html>