-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
40 lines (33 loc) · 1.38 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
<!doctype html>
<html lang="en">
<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">
<span class="msg-content"></span>
<span class="msg-confirm">知道了</span>
</div>
<div class="container"><!-- 总容器开始 -->
<h1>我的Todo</h1>
<form class="add-task"><!-- 添加清单开始 -->
<input type="text" name="content" placeholder="e.g. 下午记得跑步..." autofocus="autofocus" autocomplete="off"/>
<button type="submit">添加</button>
</form><!-- 添加清单结束 -->
<ul class="task-list"><!-- 清单列表开始 -->
</ul><!-- 清单列表结束 -->
<div class="task-detail-mask"></div>
<div class="task-detail"><!-- 清单详细信息开始 -->
</div><!-- 清单详细信息结束 -->
</div><!-- 总容器结束 -->
<video class="alerter" src="alert.mp3"></video>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/store/store.min.js"></script>
<script src="node_modules/jquery-datetimepicker/build/jquery.datetimepicker.full.js"></script>
<script src="js/base.js"></script>
</body>
</html>