forked from avinash201199/To-Do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
<title>TodoList</title>
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet" />
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="images/favicon.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<div class="main_heading">
<h1>Todo List</h1>
</div>
</header>
<form class="todoform">
<input type="text" placeholder="add a task .." class="todo-input" required />
<div class="abc">
<button class="todo-button" type="submit">
<i class="fas fa-plus-square"></i>
</button>
<div class="select">
<select name="todos" class="filter-todo " style="color:black;">
<option value="all" style="color:black;">All</option>
<option value="completed" style="color:black;">Completed</option>
<option value="incomplete" style="color:black;">Incomplete</option>
</select>
</div>
</div>
</form>
<div class="todo-container">
<ul class="todo-list"></ul>
</div>
<footer class="footer">
<h3>Made with <i class="fas fa-heart"></i> by Avinash</h3>
<div class="social-media">
<a class="link" href="https://www.instagram.com/lets__code/" target="_blank" rel="noopener noreferrer"><img
class="social-icon" src="images/instagram.svg" alt="instagram" /></a>
<a class="link" href="https://www.linkedin.com/in/avinash-singh-071b79175/" target="_blank"
rel="noopener noreferrer"><img class="social-icon" src="images/linkedin.svg" alt="linkedin" /></a>
<a class="link" href="mailto: avinash201199gmail.com" target="_blank" rel="noopener noreferrer"><img
class="social-icon" src="images/gmail.svg" alt="gmail" /></a>
</div>
<p class="footer-desc">This project is a part of <a class="footer-desc"
href="https://hacktoberfest.digitalocean.com/" target="_blank" rel="noopener noreferrer">hacktoberfest 2021</a>
</p>
</footer>
<script src="./app.js"></script>
</body>
</html>