-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (29 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
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do-list</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="heading">
<h2 id="header-date">To-do-list</h2>
</div>
<div class="form">
<input type="text" id="input-task" name="input_box" placeholder="Add Task" name="inputBox">
<button id="add-button">Add</button>
</div>
<h2 style="color: aliceblue; font-size: 2rem;">Task list </h2>
<ul id="list-container"></ul>
<hr>
<div class="counter-container">
<p>Complete:<span id="Complete"> 0</span></p>
<p>|</p>
<p>Incomplete: <span id="inComplete"> 0</span></p>
</div>
</div>
<script src="script/script.js"></script>
</body>
</html>