generated from VCGithubCode/vernell-c-new-repo-generator
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.html
59 lines (56 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link href="assets/favicon/favicon.ico" rel="icon" type="image/x-icon">
<title>404 - Super Mario</title>
</head>
<body>
<!-- Header -->
<header id="landing-header">
<h1 class="header-home">​</h1>
<div class="image-container">
<img id="title" src="assets/images/title.webp" alt="an image of mario reboot text">
</div>
<div class="nav-menu">
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" class="menu-icon">
​<span></span>
</label>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="about.html">
<img src="assets/images/developers.webp" alt="Meet the developers" class="nav-image">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">
<img src="assets/images/contact.webp" alt="contact us" class="nav-image">
</a>
</li>
</ul>
</div>
</header>
<!-- Scene -->
<div class="scene">
<!-- Clouds going across screen -->
<div class="cloud cloud1"></div>
<div class="cloud cloud2"></div>
<div class="cloud cloud3"></div>
<div class="cloud cloud4"></div>
<!-- Error title and message -->
<h1 id="error-header">Page Not Found<br>Error 404!</h1>
<p id="error-text">
Oh no, Mario can't find you!<br>Lets get you back to the homepage.
</p>
<!-- Link back to home page -->
<div>
<a href="index.html">
<img id="error-link" src="assets/images/homepage.webp" alt="Homepage">
</a>
</div>
</div>
</body>
</html>