-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.55 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>
<head>
<title>Todos List</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Itim&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>Todo list</header>
<div class = "grid1">
<input type="text" id ="userinput" placeholder="Enter todo"></input>
<button id ="enter">Enter</button>
<button id ="clearlist">Clear List</button>
</div>
<section>
<div class = "section--background">
<ul>
<div class = "wrapper">
<li >play Football</li>
<div class="div"></div>
</div>
<div class = "wrapper">
<li >Cook </li>
<div class="div"></div>
</div>
<div class = "wrapper">
<li >Study Javascript</li>
<div class="div"></div>
</div>
<div class = "wrapper">
<li>Work</li>
<div class="div"></div>
</div>
<div class = "wrapper">
<li>Repeat</li>
<div class="div"></div>
</div>
</ul>
</div>
</section>
<script type="text/javascript" src ="script.js"></script>
</body>
</html>