-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (43 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- StyleSheet -->
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
<link rel="stylesheet" href="styles.css">
<!-- Theme colors -->
<meta name="theme-color" content="#EBEF95" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#8d62620b" media="(prefers-color-scheme: dark)">
<!-- Fonts Links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inclusive+Sans&family=Itim&family=Padauk&display=swap" rel="stylesheet">
<!-- FontAwesome Links -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>To-Do List</title>
</head>
<body>
<div class="container">
<div class="header">
<h2 id="title">To-Do List</h2>
<p id="author">by <a href="https://github.com/thuhtoosan" target="_blank">Thu Htoo San</a></p>
</div>
<div class="input-container">
<input type="text" name="task-input" id="task-input" placeholder="Enter your task" autofocus>
<button id="addTaskBtn"><i class="fa-solid fa-plus"></i></button>
</div>
<div class="task-container">
</div>
<div class="remove-container">
<button id="removeAllBtn">Remove All</button>
</div>
</div>
<a href="https://github.com/ThuHtooSan/to-do-list" target="_blank">
<div class="source-code">
<i class="fa-brands fa-github-alt"></i>
</div>
</a>
<script src="app.js"></script>
</body>
</html>