generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
404.html
50 lines (50 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- External libraries/frameworks CSS links -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="shortcut icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="shortcut icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Project Custom CSS File -->
<link rel="stylesheet" href="assets/css/style.css">
<title>404 hack not found</title>
</head>
<body id="error-body">
<div id="grid-container-404">
<!-- header -->
<div id="header-text-error">
<header>
<h1><img class="header-img" src="assets/tileset/frames/playerSprite/wizzard_m_idle_anim_f0.png" alt="wizard image"> ERROR 404 <img class="header-img" src="assets/tileset/frames/playerSprite/wizzard_m_idle_anim_f0.png" alt="wizard image"> </h1>
</header>
</div>
<!-- cow -->
<div id="moo-img">
<img src="assets/images/cow_cow.jpg" alt="cow in a feild">
</div>
<!-- cow text -->
<div id="moo-text">
<div class="grid-section-background ">
<h2>Moooooo</h2>
<p>There are no cow bells here! Please moooooooove along back to the <a href="index.html">home</a> page.</p>
<p>No seriously you need to be on the <a href="index.html">udder</a> page.</p>
<P>..... Why are you still here? stop milking it, click the <a href="index.html">link</a>.</P>
</div>
</div>
<!-- footer -->
<div id="footer-error" class="sticky">
<div>
<h1>Need More Cowbells</h1>
<p><i class="fas fa-copyright"></i> Need More Cowbells Ltd. 2021</p>
</div>
</div>
</div>
<!-- Phaser Library Script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.55.2/phaser.min.js" integrity="sha512-kg6fSrg6FkD9Ua02PzuA289KatVkTp6HdiFrSKwnz1bKBeKe5JG54rNeYZeghYO/I4ka49rb9H/9Ezcq9Se3iQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Project Custom JS Script -->
<script src="assets/js/main.js"></script>
</body>
</html>