-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 2.19 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todo App</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./styles/style.css" />
<script src="./src/main.js" type="module"></script>
</head>
<body>
<header>
<nav class="navigation">
<div class="logo-container">
<a href="#">
<img
class="logo"
src="https://www.raweng.com/v3/assets/bltaacb6b0c9b693c2d/bltc1a71705f49d391d/5de663548d1dce6ad6bed8bf/header-logo.svg?format=pjpg&width=220"
alt=""
/>
</a>
</div>
</nav>
</header>
<main>
<div class="headiing">
<h1>Altaf's Todo List</h1>
</div>
<form action="" name="taskList">
<input
class="todo-input"
type="text"
name="text"
id="textInput"
placeholder="Enter Your Task"
/>
<button class="todo-button" type="submit">
<i class="fa fa-plus-square"></i>
</button>
<div class="select">
<select name="todos" id="todo-filter" class="filter-todo">
<option value="all">All</option>
<option value="completed">Completed</option>
<option value="uncompleted">Uncompleted</option>
</select>
</div>
</form>
<div class="todo-container">
<ul id="todo-list"></ul>
</div>
</main>
<footer>
<p class="copy">
© 2020 All Rights Reserved by <span>Altaf Shaikh</span>
</p>
<div class="social-links">
<a href="#" class="fa fa-twitter twitter"></a>
<a href="#" class="fa fa-linkedin linkedin"></a>
<a href="#" class="fa fa-facebook facebook"></a>
<a href="#" class="fa fa-github github"></a>
</div>
</footer>
</body>
</html>