-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
executable file
·98 lines (80 loc) · 3.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Benjamin Chase</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- box icons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- custom css -->
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<!-- header design -->
<header class="header">
<a href="/index.html" class="logo">Benjamin Chase</a>
<div class='bx bx-menu' id="menu-icon"></div>
<nav class="navbar">
<a href="/index.html" class="active">Home</a>
<a href="/index.html#about">About</a>
<a href="/engineering/pre-engineering.html">Pre-Engineering</a>
<a href="/computer-science/computer-science.html">Computer Science</a>
<a href="/other-projects/other-projects.html">Other Projects</a>
<a href="/work-experience/work-experience.html">Work Experience</a>
</nav>
</header>
<!-- home section design -->
<section class="home" id="home">
<div class="home-content">
<!-- Animated Typing -->
<h1>
<!-- Element to contain animated typing -->
<span id="element"></span>
<!-- Load library from the CDN -->
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script>
var typed = new Typed('#element', {
startDelay: 1000,
strings: ['<i>Oops... this page does not exist...</i>'],
typeSpeed: 100,
cursorChar: "<i>|<i>",
loop: false,
});
</script>
</h1>
<h2>
-> 404 error.
</h2>
<br>
<br>
<br>
<br>
<h1>You can go back to the main page <a href="/index.html">here</a>.</h1>
</div>
<div class="home-img">
<!-- <img src="images/home.png" alt=""> -->
</div>
</section>
<!-- footer design -->
<footer class="footer">
<div class="footer-text">
<p>Copyright © 2023 - 2024 by Benjamin Chase</p>
<p>The code for this website, excluding dependencies, is licensed under the GNU GPLv3 license.</p>
<p>Code and license are available at: <a href="https://github.com/perspector/perspector.github.io">GitHub</a></p>
</div>
<div class="social-media">
<a href="https://github.com/perspector"><i class='bx bxl-github'></i></a>
<a href="mailto:[email protected]"><i class='bx bxl-gmail'></i></a>
</div>
</footer>
<!-- typed js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!-- scroll reveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- custom js -->
<script src="/js/script.js"></script>
</body>
</html>