-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.27 KB
/
index.html
File metadata and controls
46 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge;FF=3">
<title>To Do List</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="intro col-12">
<h1>To Do List</h1>
<div class="border1"></div>
</div>
</div>
</div>
<div class="row">
<div class="helpText col-12">
<p id="first">Enter items to your list.</p>
<p id="second">Click the item to mark it as complete.</p>
<p id="third">Click the "X" to remove the item from your list.</p>
</div>
</div>
<div class="row">
<div class="col-12">
<input id="userInput" type="text" placeholder="New item..." maxlength="27">
<button id="enter">Add Item</button>
</div>
</div>
<!-- List -->
<div class="row">
<div class="listItems col-10">
<ul class="col-8 offset-0 col-sm-8 offset-sm-2">
</ul>
</div>
</div>
<script type="text/javascript" src="script_method3.js"></script>
</body>
</html>