-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (38 loc) · 1.57 KB
/
Copy pathindex.html
File metadata and controls
49 lines (38 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tom's To-Do List</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap Stuff -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker|Ubuntu" rel="stylesheet">
<link href="css/style.min.css" rel="stylesheet">
</head>
<body>
<main role="main">
<div class="toDo toDoInput">
<h1 class="mx-auto">Tom's To-Do List</h1>
<form action="" id="addForm">
<input name="itemDescription" type="text" class="form-control" placeholder="Enter a new to-do item">
</form>
</div>
<div class="toDo toDoListContainer">
<ul class="toDoList" id="list">
</ul>
</div>
</main>
<div id="templates">
<li class="toDoItem" data-id="1">
<span class="complete">✔</span>
<span class="description"></span>
<span class="delete">✖</span>
</li>
</div>
<!-- Necessary Scripts... Keep these at the bottom of your <body> :) -->
<script src="//localhost:35729/livereload.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script> -->
<script src="js/main.js"></script>
</body>
</html>