forked from codeforsanjose/codeforsanjose.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
30 lines (26 loc) · 987 Bytes
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code for San José - 404 Not Found!</title>
<link rel="stylesheet" href="./assets/css/global.min.css">
<link rel="stylesheet" href="./assets/css/404.min.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-26B6FB8T8P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-26B6FB8T8P');
</script>
</head>
<body>
<div class="error404">
<img src="./assets/img/logonav.png" alt="Code for San José logo">
<h1>Page not found</h1>
<p>How did you end up here?! <span role="img" aria-label="hmmm emoji">🤔</span></p>
<a href="./index.html">Go Home</a>
</div>
</body>
</html>