-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<title>Webpack Todo</title>
</head>
<body>
<div class="app-wrapper">
<header>
<nav>
<ul>
<li>
<a class="todo-nav active">Active</a>
</li>
<li>
<a class="todo-nav">Favourite</a>
</li>
<li>
<a class="todo-nav">Completed</a>
</li>
</ul>
</nav>
<form>
<input type="text" title="input-todo-name">
<button type="reset">Clear</button>
<button type="submit">Add</button>
</form>
</header>
<main>
<ul class="todo-task-list">
<i class="icon-close" style="width: 0; height: 0; visibility: hidden;"></i>
</ul>
</main>
</div>
</body>
</html>