-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
37 lines (36 loc) · 1.08 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/style.css" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<title>To Do List</title>
</head>
<body>
<header>
<h1>Shin's To Do List</h1>
</header>
<!-- 新增功能 -->
<form action="">
<input type="text" />
<input type="number" min="1" max="12" placeholder="MM" required />
<input type="number" min="1" max="31" placeholder="DD" required />
<button type="submit">Add into List</button>
</form>
<!-- 分類按鈕 -->
<div class="sort">
<button>Sort By Time</button>
</div>
<!-- 容器 -->
<section></section>
<script src="./app.js"></script>
</body>
</html>