-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
218 lines (205 loc) · 12.2 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!--
The HTML structure builds out the 404 page
of the website. On the 404 page, a simple
"Page not found" heading is displayed along
with a message explaining to the user that
they cannot access whatever page they were
trying to access. The user will be given
an option to return to the "About" page of
the website as well.
...
Project: Personal Portfolio Website
Author: Andrew Krause
Date: 01/31/2022
...
-->
<!DOCTYPE html>
<html>
<head>
<!-- Meta Data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS Speadsheets, Icon for Tab Display, and Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/mobile.css">
<link type="text/css" rel="stylesheet" href="css/larger.css">
<link type="text/css" rel="stylesheet" href="css/desktop.css">
<link type="text/css" rel="stylesheet" href="css/maximum.css">
<link rel="stylesheet" href="css/font-mfizz-2.4.1/font-mfizz.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="images/personalprofile-images/KrauseMonologoCircle.png" type="image/x-icon">
<!-- Script Links for JavaScript, Fontawesome, and JQuery -->
<script type="text/javascript" src="javascript/navbar.js" defer></script> <!-- async defer -->
<script type="text/javascript" src="javascript/email.js" defer></script> <!-- async defer -->
<script type="text/javascript" src="javascript/window.js" defer></script> <!-- async defer -->
<script src="https://kit.fontawesome.com/55b918ce29.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Sans Serif 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=Open+Sans:wght@500&display=swap" rel="stylesheet">
<!-- 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=Bitter:wght@300&family=Cardo&family=Josefin+Slab&family=Libre+Franklin:wght@200&family=Lora:wght@400;500&family=Montserrat:wght@300&family=Open+Sans:wght@500&family=Raleway:wght@300&family=Rokkitt:wght@300&family=Rubik:wght@300&family=Source+Sans+Pro&family=Unna&family=Zilla+Slab:wght@300&display=swap" rel="stylesheet">
<!-- Script to allow emails to be sent from the site -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script type="text/javascript">
(function() {
// https://dashboard.emailjs.com/admin/account
emailjs.init("dJW9REn-mZZUUmf_P");
})();
</script>
<!-- Title of website -->
<title>Andrew Krause</title>
</head>
<body id="top">
<!-- Responsive navbar of page -->
<header id="navbar" data-visible="true">
<nav>
<div class="navbar-container">
<a class="nav-heading-text" href="index.html">
<b class="nav-heading">Andrew Krause</b>
</a>
<ul class="menu">
<li>
<a id="menu-about" class="menu-link menu-about" href="index.html">About</a>
</li>
<li>
<a id="menu-resume" class="menu-link menu-resume" href="resume.html">Resume</a>
</li>
<li>
<a id="menu-projects" class="menu-link menu-projects" href="projects.html">Projects</a>
</li>
<li>
<a id="menu-contact" class="menu-link menu-contact" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Main content of the 404.html page -->
<article data-visible="true">
<!-- Not Found -->
<section id="notfound">
<div class="notfound-container slide-from-left">
<div class="notfound-row">
<div class="col-sm-12 col-lg-4 notfound-pic-column-404">
<img class="notfound-pic" src="images/personalprofile-images/KrauseMonologoCircle.png" alt="notfound-img">
</div>
<div class="col-sm-12 col-lg-4 notfound-column-404">
<h1 class="notfound-heading">Page not found.</h1>
<p class="notfound-content">Sorry, you cannot access that page. You will be able to explore more on the <a class="notfound-link-404" href="index.html">About</a> page.</p>
<p class="notfound-error-code">Error Code - 404</p>
</div>
</div>
</div>
</section>
<!-- Contact modal with email functionality through EmailJS -->
<section>
<div id="messageModal" role="dialog" class="message-modal-bg">
<div class="message-modal-dialog">
<div class="message-close-modal-position">
<span id="exit-message-modal" class="message-modal-close" href="#close"><i class="message-modal-x-icon fa fa-solid fa-circle-xmark fa-2x"></i></span>
</div>
<div class="message-modal-container">
<!-- Message Modal Information and Content -->
<div class="message-modal-information">
<div class="message-modal-content">
<div class="message-modal-row">
<div class="col-lg-10 mx-auto">
<div class="message-modal-body">
<!-- Message and Heading -->
<h2 class="message-modal-heading">Message Me</h2>
<p class="message-modal-text message-subheading-text-center">Fill out the fields and click the send button.</p>
<!-- Form to process user input for the message -->
<form action="#">
<input id="message-email" class="message-email-subject-input" placeholder="Your Email Address" type="email" required>
<input id="message-subject" class="message-email-subject-input" placeholder="Subject of Message" type="text" required>
<textarea id="message-body" class="message-body-input" placeholder="Body of Message" type="text" required></textarea>
<!-- Send Button on Bottom of Message Modal -->
<div class="message-bottom-button-container">
<button type="submit" id="bottom-send-message-modal" class="btn btn-dark btn-l message-model-send message-bottom-modal-button">
<i class="fa-solid fa-paper-plane"></i> Send
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Confirmation modal to display AFTER the user sends through EmailJS -->
<div id="confirmModal" role="dialog" class="confirm-modal-bg">
<div class="confirm-modal-dialog">
<div class="confirm-modal-container">
<!-- Confirm Modal Information and Content -->
<div class="confirm-modal-information">
<div class="confirm-modal-content">
<div class="confirm-modal-row">
<div class="col-lg-10 mx-auto">
<div class="confirm-modal-body">
<!-- Message and Heading -->
<h2 class="confirm-modal-heading">Message sent.</h2>
<h2 class="confirm-modal-heading">Thank you!</h2>
<p class="confirm-modal-text confirm-subheading-text-center">Click okay to close this message.</p>
<!-- Close Button of Confirmation Modal -->
<div class="message-bottom-button-container">
<a id="confirm-bottom-exit" class="btn btn-dark btn-l confirm-model-close confirm-bottom-modal-button" href="#close">
Okay
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</article>
<!-- Footer of page with name and dynamic year -->
<footer id="footer" data-visible="true">
<div class="footer-row">
<p class="footer-content">Copyright © Andrew Krause <script>document.write(new Date().getFullYear())</script></p>
<ul class="footer-links-list">
<li>
<a class="footer-link" href="resume.html">Resume</a>
</li>
<li>
<a class="footer-link" href="projects.html">Projects</a>
</li>
<li>
<a class="footer-link" href="contact.html">Contact</a>
</li>
</ul>
<ul class="footer-icons">
<li>
<a id="message-item" class="header-icon" style="cursor: pointer;" onClick="get_messageID(this.id)">
<i class="fas mail fa-envelope fa-2x"></i>
<script>
function get_messageID(messageItem) {
return messageItem.id;
}
</script>
</a>
</li>
<li>
<a class="header-icon" href="https://www.linkedin.com/in/andrew-krause-b6aa21179/" target="_blank">
<i class="fab fa-linkedin fa-2x"></i>
</a>
</li>
<li>
<a class="header-icon" href="https://github.com/Andrew-EKrause" target="_blank">
<i class="fab fa-github fa-2x"></i>
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>