-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.22 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="zh-CN">
<head>
<meta charset="UTF-8">
<title>My Todo App</title>
<link rel="stylesheet" href="node_modules/normalize.css/normalize.css">
<link rel="stylesheet" href="node_modules/jquery-datetimepicker/build/jquery.datetimepicker.min.css">
<link rel="stylesheet" href="css/base.css">
</head>
<body>
<div class="msg">
<div class="msg-content"></div>
<span class="anchor confirmed">知道了</span>
</div>
<div class="container">
<h1>我的Todo</h1>
<form class="add-task">
<input
name="content"
type="text"
placeholder="e.g. 下午记得买菜"
autofocus
autocomplete="off"
>
<button type="submit">提交</button>
</form>
<div class="task-list">
</div>
<div class="task-detail-mask"></div>
<div class="task-detail">
</div>
</div>
<video class="alerter" src="Little Mix,Charlie Puth - Oops.mp3"></video>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/store/store.js"></script>
<script src="node_modules/jquery-datetimepicker/build/jquery.datetimepicker.full.js"></script>
<script src="js/base.js"></script>
</body>
</html>