-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
90 lines (81 loc) · 3.18 KB
/
404.html
File metadata and controls
90 lines (81 loc) · 3.18 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE HTML>
<!--
Introspect by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<!-- This code has been commented to make it easy to understand for those with low amounts of HTML knowledge. Have fun looking through the code! :D -->
<html>
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <!-- icon for the website -->
<title>DHS Programing</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <!-- makes sure resizing the window doesn't mess with the site -->
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- Header -->
<header id="header"> <!-- banner providing links for easy navigation between home, about, and projects-->
<div class="inner">
<a href="index.html" class="logo">DHS Programming</a>
<nav id="nav">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="about.html">About</a>
</nav>
</div>
</header>
<a href="#menu" class="navPanelToggle"><span class="fa fa-bars"></span></a>
<!-- Banner -->
<section id="banner">
<div class="inner">
<h1> <span>404 Error<br />
</span></h1>
</div>
</section>
<!-- One -->
<section id="one">
<div class="inner">
<p>You seem to have encountered a 404 error! This is an error that occurs when you try to visit a page that doesn't exist. Please email dhsprogramming@gmail.com if you got to this page from a link, and we'll try to fix it. Until then, here's a handy button to take you back to the central page!</p>
<ul class="actions">
<li><a href="/index.html" class="button alt">Return to Home</a></li>
</ul>
</div>
</section>
</div>
</section>
<!-- Footer -->
<section id="footer">
<div class="inner">
<!--<header> This is the code for the footer. It's useless and doesn't work, so it has been commented out
<h2>Get in Touch</h2>
</header>
<form method="post" action="#">
<div class="field half first">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="field half">
<label for="email">Email</label>
<input type="text" name="email" id="email" />
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="6"></textarea>
</div>
<ul class="actions">
<li><input type="submit" value="Send Message" class="alt" /></li>
</ul>
</form>-->
<div class="copyright"> <!-- Copyright disclaimer for the template used. We can add a DHS Programming Club copyright later if we want -->
© Untitled Design: <a href="https://templated.co/">TEMPLATED</a>. Images <a href="https://unsplash.com/">Unsplash</a>
</div>
</div>
</section>
<!-- Scripts --> <!-- Javascript Files that are used by this site -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>