-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
31 lines (31 loc) · 1.1 KB
/
Copy path404.html
File metadata and controls
31 lines (31 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Oops! Something Went Wrong...</h1>
</header>
<section class="error-container">
<div class="error-message">
<h2>404</h2>
<p>It seems the page you're looking for doesn't exist.</p>
<p>Don't worry, though – let's get you back on track!</p>
<div class="404">
<a href="index.html" class="button">Go Home</a>
</div>
</div>
</section>
<footer>
<p>University of Michigan School of Information <span id="year"></span><br/>
© MSI Academic Advising | <a href="https://sites.google.com/umich.edu/msiacademicadvising/student-support-resources">UMSI Academic Advising </a></p>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</footer>
</body>
</html>