-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To Do List</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<h2>TO-DO List App</h2>
<p>
<em>
Hit <b>Enter</b> or <b>Tab</b> to add item; double-click to mark an
item off; Click on
</em>
♻️
<em> to delete, and drag items to re-order. </em>
</p>
<div name="toDoList">
<input type="text" name="ListItem" />
<div id="reset">Reset</div>
</div>
<br />
<h3>My TO-DOs</h3>
<ol id="list"></ol>
</div>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
crossorigin="anonymous"
></script>
<script src="js/scripts.js"></script>
</body>
</html>