-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
55 lines (47 loc) · 1.21 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
<head>
<title>Error 404 | TripBuddy.SG</title>
<style type="text/css">
body {
background-color: #25b0e9;
margin: 0;
font-family: Helvetica, Arial, sans-serif;
}
.container {
position: absolute;
top: 20%;
left: 10%;
right: 10%;
text-align: center;
}
h1 {
letter-spacing: -1px;
font-size: 120px;
font-weight: 100;
margin: 0px 0 50px 0;
color: #ffffff;
}
h2 {
font-size: 50px;
margin: 0px 0 60px 0;
color: #ffffff;
}
#suggestions a {
color: #ffffff;
text-decoration: none;
font-weight: 200;
font-size: 30px;
}
#suggestions a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2><strong>THIS DOESN'T SEEM RIGHT, DOES IT?</strong></h2>
<div id="suggestions">
<a href="http://tripbuddy.sg/">Return to Safety</a>
</div>
</div>
</body>