-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
44 lines (44 loc) · 1.32 KB
/
todo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
"
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link href="todo.css" type="text/css" rel="stylesheet" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&family=Open+Sans:wght@600&family=Roboto:ital,wght@0,100;1,300&display=swap');
</style>
<title>todo app</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="heading">
<h2>MOJO TODO-LIST</h2>
</div>
<div class="input-field">
<label>Enter Your Todo :</label>
<input
type="text"
placeholder="Enter your tasks"
id="input"
required
autocomplete="off"
/>
</div>
</div>
<div class="body">
<ul class="list"></ul>
</div>
</div>
<script src="todo.js"></script>
</body>
</html>