-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.42 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
45
46
47
48
<!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>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/titles.css">
</head>
<body class="body">
<div class="container">
<div class="row">
<div class="main-title col-12">
<h1>Today's List</h1>
</div>
</div>
<div class="row">
<div class="helpText col-12">
<p class="first">Enter text into the input field to add items to your list.</p>
<p class="second">Click the item to mark it as complete.</p>
<p class="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<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>
<script type="text/javascript" src="script.js"></script>
</body>
</html>