-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
40 lines (37 loc) · 1.29 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
<!--TODO: add a manifest.json file-->
<!DOCTYPE html>
<html>
<head>
<title>Page not found</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="/assets/styles/styles.css"/>
<link href="https://fonts.cdnfonts.com/css/source-code-pro" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="header">
<div class="intro">
<h1>./Hello_world</h1>
</div>
</div>
<div id="topbar" class="navbar">
<a href="index.html">About me</a>
<a href="quals.html">Quals</a>
<a href="skills.html">Skills</a>
<a href="wordle.html">Wordle game</a>
<a href="css1.html">CSS1</a>
<a href="css2.html">CSS2</a>
<a class="icon" onclick="responsive_navbar()"><i class="fa fa-bars"></i></a>
</div>
<div class="page_not_found_404">
<h3>Page not found</h3>
<p>Looks like you've are lost, gonk</p>
<a href="index.html"><p>Back to home page</p></a>
</div>
<div class="footer">
<h2><span>©</span> 2023 Captain Price</h2>
</div>
<script src="scripts/main.js"></script>
</body>
</html>