-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.17 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
<!DOCTYPE html>
<html>
<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="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="./css/todolist.css" />
<title>列物清单(离线版)</title>
</head>
<body>
<div id="myDIV" class="header">
<h2>To do list</h2>
<h3>列物清单~</h3>
<input type="text" id="myInput" placeholder="请输入你要的东西">
<!-- won't be saved across server lmao -->
<span onclick="newElement()" class="addBtn">添加</span>
</div>
<ul id="myUL">
</ul>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script type="text/javascript" src="js/todolist_cookie.js"></script>
<script type="text/javascript" src="js/text_effect.js"></script>
</body>
</html>