-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
59 lines (56 loc) · 2.58 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>404</title>
</head>
<body style="background-color:black;">
<nav class="navbar navbar-expand-lg bg-primary" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand">404</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home
<span class="visually-hidden">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="resume.html">Resume
<span class="visually-hidden">(current)</span>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Links</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://www.linkedin.com/in/chuckhupertii/">LinkedIn</a>
<a class="dropdown-item" href="https://www.youtube.com/channel/UC_Lkq87SZ2rTUPP-RL7lTNA">YouTube</a>
<a class="dropdown-item" href="https://github.com/chupert91">GitHub</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="https://www.outrunfootball.com">Outrun WebApp</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<section id="about" style="width:100%, padding-top:5rem;">
<div>
<div style="text-align:center; background-color:black;">
<h1 style="color:#fff; margin-top:2rem; size:72px;">404</h1>
<h4 style="color:#fff;">Uh Oh, This isn't the page you were looking for</h4>
</div>
<div style="text-align:center;">
<img src="images/jedi.jpg" style="width:100%;"/>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
</body>
</html>