-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
64 lines (60 loc) · 2.68 KB
/
error.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zachary Hill - About</title>
<link rel="icon" type="image/x-icon" href="./media/images/favicon.ico">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5HRJ53HCZD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5HRJ53HCZD');
</script>
<!-- End Google tag -->
<!-- Google Fonts -->
<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+Sans:ital,wght@0,100;0,200;0,300;1,100&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/aa3ffadad5.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navigation Bar-->
<header>
<!-- Logo -->
<a class="logo" href="index.html"><span class="dot">.</span>Zachary Hill</a>
<!-- Menu Button -->
<input class="menu-button" type="checkbox" id="menu-button"/>
<label class="hamburger" for="menu-button"><span class="hamburger-line"></span></label>
<!-- Navigation Links -->
<nav class="navbar">
<ul class="menu">
<li class="item"><a href="index.html">Home</a></li>
<li class="item"><a href="index.html#about-me">About</a></li>
<li class="item"><a href="contact.html">Contact</a></li>
<li class="item"><a href="architecture.html">About This Website</a></li>
</ul>
</nav>
</header>
<!-- Content-->
<div class="error container">
<div class="greetings">
<div class="greetings-text">
<h1>Uhoh, <span class="greetings-emphasis">something went wrong.</span></h1>
<p>The wizards must be fighting.</p>
</div>
<img src="./media/images/error_wizards.png" alt="Two wizards facing off in an epic duel." id="headshot-image">
</div>
</div>
<!-- Footer Copyright-->
<footer>
<div class="footer">
<p><i class="fa-regular fa-copyright"></i> 2023 | Zachary Hill</p>
</div>
</footer>
</body>
</html>