-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.46 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/jpeg" href="icon.jpg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="styles.css">
<title>My Checklist</title>
</head>
<body>
<div class="container">
<h1 class="header">
<span class="icon"><i class="fa-solid fa-circle-check"></i></span>   My Checklist   <span class="icon"><i class="fa-solid fa-bolt"></i></span>
</h1>
<div class="info">
<span class="info-icon"><i class="fa-solid fa-info-circle"></i></span>
<small>Use <kbd>del</kbd> to delete items, swipe left on mobile.</small>
</div>
<div id="checkboxes">
<div class="checkbox-item">
<input type="checkbox" class="checkbox" id="item1" />
<label for="item1" class="custom-checkbox"></label>
<input type="text" class="item-input" placeholder="Add item..." />
</div>
</div>
</div>
<script src="script.js"></script>
<script src="service-worker.js"></script>
</body>
</html>