-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path404.html
86 lines (80 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<title>404 NOT FOUND</title>
<style type="text/css">
#image404 {
height: 150px;
width: 150px;
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 70px;
}
#d {
text-align: center;
}
button {
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
border-radius: 10px;
}
button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
background-color: #008CBA;
color: white;
}
#graybackground {
width: 100%;
max-width: 1400px;
height: 500px;
display: block;
margin: 100px auto 0 auto;
border-radius: 10px;
}
a {
text-decoration: none;
color: white;
display: block;
}
</style>
<link rel="stylesheet" href="/css/global.css">
</head>
<body>
<nav>
<a href="/" class="wrapper"><img src="/images/logo.png" alt="TechnoJam Logo"></a>
<a href="/about.html" class="wrapper"><span>About</span></a>
<a href="/events.html" class="wrapper"><span>Events</span></a>
<a href="/team.html" class="wrapper"><span>Team</span></a>
<a href="/alumni.html" class="wrapper"><span>Alumni</span></a>
</nav>
<div class="container">
<div id="graybackground">
<img id="image404" src="images/404.png">
<div id="d">
<h1>Aww.. Don't Be Sad!</h1>
<h3>It's just a 404 Error!</h3>
<p>What you're looking for may have been misplaced<br>
in Long Term Memory.</p>
<a href="/index.html">
<button><i class="fas fa-chevron-left"></i> Go Back</button></a>
</div>
</div>
</div>
</div>
</body>
</html>