forked from KAIKIS123/bianqian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (44 loc) · 2.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>简单便签!</title>
<!-- Meta tags -->
<meta name="description" content="HTML5 sticky notes application. Create sticky notes for the web !" />
<meta name="keywords" content="HTML5,sticky,notes,stickynote,note,stickies,css3,localstorage,offline,sticky-notes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?v=1">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">
<!-- For first-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png">
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/main.css?version=1" />
<link rel="stylesheet" href="assets/css/html5sticky.css?version=1" />
<script>!window.jQuery && document.write(unescape('%3Cscript src="assets/js/jquery1.6.2.js"%3E%3C/script%3E'))</script>
<script src="assets/js/respond.min.js"></script>
<script src="assets/js/modernizr.custom.23610.js"></script>
<script src="assets/js/html5sticky.js"></script>
<script src="assets/js/prettyDate.js"></script>
</head>
<body>
<!-- First header has an ID so you can give it individual styles, and target stuff inside it -->
<header id="head">
<!-- Main nav, styled by targeting "#head nav"; you can have more than one nav element per page -->
<!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
<hgroup>
<a href="index.html">
<h1>便签 <sup>v1.0.0</sup></h1>
</a>
</hgroup>
</header><!-- #head -->
<div id="main">
<a href="#" id="addnote"><img src="assets/img/add.png" alt="Add Sticky Note" title="Add a new sticky note"></a>
<a href="#" id="removenotes"><img src="assets/img/remove.png" alt="Remove all sticky notes" title="Remove all sticky notes"></a>
<div class="clear"> </div>
</div>
<div class="clear"> </div>
</html>