-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo list</title>
<script type="text/javascript" src="assets/js/lib/jQuery.js"></script>
<link rel="stylesheet" href="assets/css/todos.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<body>
<div id="container">
<h1>To-Do List<i class="fa fa-plus"></i></h1>
<input type="text" placeholder="Add New Todo" maxlength="40">
<div class="main cards">
<div class="task card"><span><i class="fa fa-trash"></i></span>
<input type="text" placeholder="Add Title">
<p class="todos"> SHOEB MERCHANT </p>
</div>
<div class="task card"><span><i class="fa fa-trash"></i></span> WEB DESIGNER</div>
<div class="task card"><span><i class="fa fa-trash"></i></span> TODO LIST</div>
</div>
</div>
<script src="assets/js/todos.js"></script>
</body>
</html>