-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 874 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (30 loc) · 874 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>待办清单</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>📝 待办清单</h1>
<div class="input-section">
<input
type="text"
id="taskInput"
placeholder="输入新任务..."
autocomplete="off"
>
<button id="addBtn">添加</button>
</div>
<ul id="taskList" class="task-list">
<!-- 任务项会通过 JS 动态添加 -->
</ul>
<div class="empty-state" id="emptyState">
<p>暂无任务,添加一个吧!</p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>