-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (63 loc) · 2.52 KB
/
index.html
File metadata and controls
92 lines (63 loc) · 2.52 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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">
<title>Simple Todo</title>
<!-- adding the browser tab icon -->
<link rel="icon" href="./todo_icon.png">
<!-- css sheet -->
<link rel="stylesheet" href="./style.css">
<!-- main js file -->
<!-- <script src="./main.js" defer></script> -->
<!-- app.js file -->
<!-- <script src="./app.js" defer></script> -->
<!-- app2.js file -->
<script src="./app2.js" defer></script>
<!-- add theme color for PWA -->
<meta name="theme_color" content="#fff">
<!-- icon stylesheet -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Animate on Scroll CSS CDN-->
<!-- <link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" /> -->
<!-- add the appple touch icon -->
<!-- <link rel="appple-touch-icon" href="./icons/manifest-icon-192.maskable.png"> -->
</head>
<body>
<section class="header">
<h1>Simple Todo ☺</h1>
</section>
<!-- input section -->
<section class="main-container animate-main-on-reload">
<div class="input-container" id="input-container">
<input type="text" placeholder="Enter to-do" class="text-input">
<span class="material-icons input-clear">close</span>
<span class="material-icons input-add">add</span>
</div>
</section>
<!-- todo section -->
<section class="todo-section animate-todos-container-on-relaod" id="todo-section">
<h3 class="no-todos">You don't have any To-Do</h3>
<!-- <div class="todo-container" data-aos="fade-up">
<p class="todo-para">wdawdasdasd</p>
<span class="material-icons">done</span>
<span class="material-icons">delete</span>
</div>
<div class="todo-container" data-aos="fade-up">
<p class="todo-para">awdadsdawd</p>
<span class="material-icons">done</span>
<span class="material-icons">delete</span>
</div>
<div class="todo-container" data-aos="fade-up">
<p class="todo-para ">sdfsdf</p>
<span class="material-icons">done</span>
<span class="material-icons">delete</span>
</div> -->
</section>
<!-- <script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script> -->
</body>
</html>