forked from shubhangi013/Todo-JS
-
Notifications
You must be signed in to change notification settings - Fork 69
/
index.html
31 lines (28 loc) · 812 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>LEARN JS</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./styles.css" />
<link rel="icon" type="image/x-icon" href="./favicon.png" />
</head>
<body>
<main class="wrapper">
<nav class="navbar">
<ul class="nav">
<li class="nav__item">TODO</li>
</ul>
</nav>
<form class="todo-form">
<div class="input-field">
<input type="text" id="input--add" class="input" placeholder="ADD TASK!" />
<label for="input--add"></label>
</div>
<input type="submit" class="button button--add" value="Add" />
</form>
<ul class="todo-collection"></ul>
</main>
<script src="./script.js"></script>
</body>
</html>