-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 916 Bytes
/
index.html
File metadata and controls
35 lines (29 loc) · 916 Bytes
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 lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>TodoList</title>
<link rel="stylesheet" href="css/theme.css" />
<script src="js/views.js"></script>
<script src="js/models.js"></script>
<script src="js/forms.js"></script>
</head>
<body>
<div id="main-container">
<header role="banner" id="header">
<nav role="navigation" id="nav">
<h1 class="nav-logo" id="logo">TodoList</h1>
<button class="button" id="create-new">新建事项</button>
</nav>
</header>
<div id="status-info">操作成功</div>
<main role="main" id="main-box"></main>
<footer role="pageinfo">
<p><small>
<a href="https://github.com/doooooit/TodoList">GitHub Repository</a>
© shangxke
</small></p>
</footer>
</div>
</body>
</html>