-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path404.html
More file actions
29 lines (28 loc) · 873 Bytes
/
Copy path404.html
File metadata and controls
29 lines (28 loc) · 873 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Computing for Mathematics</title>
<link rel="shortcut icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<a class="logo" href="./">Computing for Mathematics</a>
<nav>
<ul>
<li><a href="./#schedule">Schedule</a></li>
<li><a href="./assessment/">Assessment</a></li>
<li><a href="./#faqs">FAQs</a></li>
<li><a href="./#log">Log</a></li>
</ul>
</nav>
</header>
<div class="container" style="text-align: center;">
<h1 style="font-size: 5rem; margin: 3rem 0 1rem;">404</h1>
<p>This page does not exist.</p>
<p><a href="./">Return to the course homepage.</a></p>
</div>
</body>
</html>