-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
36 lines (33 loc) · 1.2 KB
/
todo.html
File metadata and controls
36 lines (33 loc) · 1.2 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
<!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>arsentical:todo</title>
<link rel="stylesheet" href="todo.css">
</head>
<body>
<div id="bg">
<h1>I haven’t finished this yet</h1>
<ul>
<li>if you're here, I haven’t finished the page you want to go to</li>
<li>it’ll be finished eventually, but I’m only one person with little to no knowledge of web development
</li>
</ul>
<a href="./index.html">return home</a>
</div>
<div id="fg" style="display:none;">
<div id="fg-inner">
<h1>I haven’t finished this yet</h1>
<ul>
<li>if you’re here, I haven’t finished the page you want to go to</li>
<li>it’ll be finished eventually, but I’m only one person with little to no knowledge of web development
</li>
</ul>
<a href="./index.html">return home</a>
</div>
</div>
<script src="./todo.js"></script>
</body>
</html>