-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>To Do List</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="png/img" sizes="32x32" href="img/13614670071660479565-128.png">
</head>
<body>
<div class="container">
<h2>To Do List App</h2>
<p><em> Double click to mark an item off, click on "X" to delete an item, and drag items to reorder.</em></p>
<form name="toDoList">
<input type="text" name="ListItem" id="input"/>
</form>
<div onclick="newItem()" id="button">Add</div>
<br/>
<ol id="list"></ol>
</div>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
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/script.js"></script>
<p>
Icon by <a href="https://freeicons.io/profile/282412">Icon_ika</a>
on <a href="https://freeicons.io">freeicons.io</a>
</p>
</body>
</html>