-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpage.html
84 lines (79 loc) · 2.12 KB
/
webpage.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
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
<!DOCTYPE html>
<html lang="sv-SE">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My glorious webpage</title>
<link rel="stylesheet" href="style.css">
<script src="checkur.js"></script>
</head>
<body>
<h3>It's-a me, progress!</h3>
<table>
<tr>
<th>
<h4>Stuff I need to get done</h4>
</th>
<th>
I start!
</th>
<th>
Midway
</th>
<th>
Le Finish!
</th>
</tr>
<tr>
<td>
1. Baby steps
</td>
<td>
<input type="checkbox" class="checkur" id="hgj123g4j">
</td>
<td>
<input type="checkbox" class="checkur" id="j134j124g23">
</td>
<td>
<input type="checkbox" class="checkur" id="b12v3vn23v4">
</td>
</tr>
<tr>
<td>
2. Mindless ramblings
</td>
<td>
<input type="checkbox" class="checkur" id="12g34vh2gf3h4">
</td>
<td>
<input type="checkbox" class="checkur" id="kj2h3k41jh23k">
</td>
<td>
<input type="checkbox" class="checkur" id="j2hg34j1hg23j4">
</td>
</tr>
<tr>
<td>
3. We plunge into the cosmos
</td>
<td>
<input type="checkbox" class="checkur" id="7128778287">
</td>
<td>
<input type="checkbox" class="checkur" id="81234971221">
</td>
<td>
<input type="checkbox" class="checkur" id="82g24g123hg">
</td>
</tr>
</table>
<p class="notice" style="margin: 0.5rem 0">
Checkmarks are stored locally in your web browser.<br>
Empty your history and be doomed.
</p>
<!-- works on my machine -->
<script>
Checkur.init("checkur");
</script>
</body>
</html>