-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToDo.html
49 lines (45 loc) · 1.51 KB
/
ToDo.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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<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">
<title>To Do Lists</title>
<!-- Styles -->
<link rel="stylesheet" href="ToDo.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="intro col-12">
<h1>Humas To-Do List</h1>
<div>
<div class="border1"></div>
<div c>
</div>
</div>
</div>
<div class="row">
<div class="helpText col-12">
<p id="first">Enter text into the input field to add items to your list.</p>
<p id="second">Click the item to mark it as complete.</p>
<p id="third">Click "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"><i class="fas fa-pencil-alt"></i></button>
</div>
</div>
<!-- Empty List -->
<div class="row">
<div class="listItems col-12">
<ul class="col-12 offset-0 col-sm-8 offset-sm-2"></ul>
</div>
</div>
</div>
<!-- app.js -->
<script src="ToDO.js"></script>
</body>
</html>