-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
57 lines (53 loc) · 1.5 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
<!DOCTYPE HTML>
<html>
<head>
<title>Younseo Ryu | 404</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,100,300italic,100italic,400italic,700,700italic|Lora:400,400italic,700,700italic|Roboto+Slab:400,100,300,700|Merriweather:400,300,300italic,400italic,700,700italic);
body {
margin: 0;
padding: 0;
background-color: #070526;
color: #fff;
font-size: 100%;
line-height: 1.5;
font-family: "Lato", serif;
text-align: center;
}
h1 {
text-align: center;
font-size: 250px;
line-height: 300px;
font-weight: 100;
margin: 50px auto -10px;
}
p {
font-size: 1.5em;
text-align: center;
font-weight: 100;
margin-top: 50px;
margin-bottom: 70px;
font-family: 'Roboto Slab', serif;
}
.button {
font-weight: 300;
color: #ccc;
font-size: 1.1em;
text-decoration: none;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
transition: all .3s linear;
}
.button:hover {
color: #070526;
background: #ccc;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Uh oh, are you lost?</p>
<a class="button" href="http://younseoryu.com/">Let's go home.</a>
</body>
</html>