-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
33 lines (33 loc) · 1.33 KB
/
404.html
File metadata and controls
33 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>make10</title>
<meta name="description" content="a math puzzle game">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Fira+Code:wght@300..700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="main.css">
<script src="decimal.js"></script>
<script src="gemini-mexp-decimal.js"></script>
<script src="SPECIAL.js" defer></script>
<script src="app.js" defer></script>
</head>
<body>
<div class="parent">
<div class="all vcenter">
<h1 id="title">page not found</h1>
<script>
document.getElementById("title").textContent += (localStorage.getItem("make10-complete").includes("0404") ? "✅": "");
</script>
<div class="temp" id="make-0404"></div>
<a href="index.html">go back home</a>
</div>
</div>
</body>
</html>