-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#e43f5a">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="manifest" href="https://sumer16.github.io/tasky/manifest.json">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome.css">
<title>To-dos List</title>
<script type="module">
import 'https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate';
const el = document.createElement('pwa-update');
document.body.appendChild(el);
</script>
</head>
<body>
<div class="container">
<header class="header">
<div class="header-content">
<div id="name">My Daily Task</div>
<div class="clear">
<i class="fa fa-refresh"></i>
</div>
</div>
<div id="date"></div>
</header>
<div class="content">
<ul id="list"></ul>
</div>
<div class="add-todos">
<input type="text" id="input" placeholder="Thinking about something...">
<button id="submit"><i class="fa fa-plus-circle"></i></button>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>