-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
76 lines (70 loc) · 2.51 KB
/
404.html
File metadata and controls
76 lines (70 loc) · 2.51 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#000000" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="google-site-verification" content="Vv-F3PTIcS6Y_WyioQB9ZjrE6i4dlSPD6JeLb_ubZdA" />
<meta name="author" content="Built By Will" />
<meta name="copyright" content="© 2026 Will Grauvogel" />
<meta name="description" content="Portfolio site of Will Grauvogel" />
<meta name="keywords"
content="builtbywill, built, will, grauvogel, purdue, west lafayette, design, web design, interface, multimedia, portfolio, graphic design, standards compliant, mobile developer, ios developer" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="manifest" href="manifest.json" />
<title>Not Found | Built by Will - Development + Design</title>
<link rel="stylesheet" href="css/tachyons.min.css" />
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="css/index.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-74F1W3WHLB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-74F1W3WHLB');
</script>
</head>
<body>
<header class="pt4 pb3">
<div class="mw7 center pv3 lato tc f6 dark-gray">
<h1 class="ma0">
<img class="logo" src="images/logo.png" alt="" />
<span class="clip">Built by Will</span>
</h1>
<p class="lato lh-copy mb0">
Will Grauvogel<br />Development + Design
</p>
</div>
</header>
<main>
<section class="bg-darker-gray white pv4">
<div class="mw7 center ph3">
<h1>
Not Found
<a
href="http://www.myinstants.com/instant/the-price-is-right-losing-horn/"
target="_blank"
rel="noopener noreferrer">
:(
</a>
</h1>
<p>It looks like the page you were trying to access does not exist. Check the URL and try again!</p>
</div>
</section>
</main>
<footer class="bg-lightish-gray shadow-inset-light-gray">
<div class="mw7 center ph3 pt4 pb5">
<p class="lato tc fw6 f6 tracked-tight mid-gray">
© 2010 - <span id="footer-date"></span>
<br />
<img class="logo mt2" src="images/logo-footer.png" alt="Built by Will" />
</p>
</div>
</footer>
<script type="text/javascript">
document.getElementById('footer-date').textContent = new Date().getFullYear()
</script>
</body>
</html>