-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (26 loc) · 830 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="heading">
<img src="todo-banner.png" alt="todo">
</div>
<div id="form">
<div>
<input type="text" class="form-input" id="todo" name="todo" size="45" placeholder="task to be done..." required>
<button id="add">Add</button>
</div>
</div>
<div id="list">
</div>
</div>
<script src="script.js"></script>
</body>
</html>