-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.57 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
43
44
45
46
47
48
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no;" />
<meta name="MobileOptimized" content="320"/>
<title>HTML5记事本</title>
<link rel="stylesheet" href="note.css"/>
<script type="text/javascript" src="zepto.js?r="></script>
</head>
<body>
<div id="main">
<div id="menu" class="menu">
<header>
<!--<div>
<a id="clear" class="button" href="#">clear</a>
<a id="new" class="button" href="#">新增</a>
</div>-->
备忘清单
</header>
<a id="clear" class="clear" href="#">点击删除所有笔记</a>
<section id="noteNav" class="scrollable">
</section>
</div>
<div id="page" class="page">
<header class="box">
<div class="left">
<a id="tiggler" class="button" href="#">笔记</a>
</div>
<div class="center title">记事本</div>
<div class="right">
<a id="save" class="button" href="#">新建</a>
</div>
</header>
<div id="editContent" class="editContent" contenteditable="true" data-id="">
</div>
</div>
</div>
<script type="text/javascript" src="note.js"></script>
<script>
</script>
</body>
</html>