-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 963 Bytes
/
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Just Do it</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="modal-close fa ">×</span>
<p>Error: Please Enter A Title To Add items to list</p>
</div>
</div>
<section>
<h2 id="brand">Just Do It!</h2>
<input type="text" name="item_input" id="item_input" placeholder="Enter what you need to get done" autofocus="">
<input type="button" name="add_btn" value="Add item" id="add_btn">
<ul id="lists">
</ul>
<p>A simple toDo list App created by <a href="https://github.com/elinamquist">Elinam Quist</a></p>
</section>
<script src="scripts/jquery-3.1.1.min.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>