-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (73 loc) · 1.97 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Torusaynim">
<title>The End of the Internet</title>
<style>
* {
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
background-color: #000;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
a {
color: inherit;
text-decoration: none;
}
.page {
color: #fff;
text-transform: uppercase;
font-family: Times New Roman;
font-weight: 900;
padding: 3.3333333333333335vw;
padding-top: 5vw;
}
.small-line {
font-size: 5.833333333333333vw;
transform: scale(1,1.5);
line-height: 1.2;
}
.large-line {
font-size: 8.333333333333334vw;
transform: scale(1,1.5);
line-height: 1.2;
}
.error {
margin-top: 3.3333333333333335vw;
margin-bottom: 0.5833333333333334vw;
font-size: 3vw;
font-family: Helvetica;
transform: scale(1,1.5);
font-weight: 600;
}
.title {
margin-top: 1.6666666666666667vw;
font-size: 5vw;
font-family: Helvetica;
transform: scale(1,1.5);
font-weight: 600;
line-height: .9;
float: right;
}
</style>
</head>
<body>
<div class="page">
<div class="small-line">oops</div>
<div class="small-line">something</div>
<div class="large-line">went wrong</div>
<div class="error">error:404</div>
<!-- don't forget to put your home page link instead of # -->
<div class="title"><a href="index.html">take me back</a></div>
</div>
</body>
</html>