-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.62 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
<html>
<head>
<title>To-Do List</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="app.js"></script>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header">
<div class="title">
<h1>TO DO LIST</h1>
<p style="margin: 0">Created by @ishuanand97</p>
</div>
<form action="" id="form">
<input type="text" id="inp" placeholder="Enter Task...">
<!-- <i class="material-icons" id="btn" style="">check_circle</i> -->
<img src="https://svgshare.com/i/7Q2.svg" id="btn" alt="submit">
</form>
</div>
<div class="stats">Pending:
<span class="pending">0</span> Completed:
<span class="completed">0</span>
</div>
<div id="list">
<ul id="result">
<div class="nothing" id="n" style="text-align: center; margin: 0px; letter-spacing: 1px"> -----There's nothing in your list yet-----</div>
</ul>
</div>
</div>
<script src="app.js"></script>
</body>
</html>