-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
102 lines (96 loc) · 2.07 KB
/
404.html
File metadata and controls
102 lines (96 loc) · 2.07 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
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>404 - friiishop</title>
<link rel="shortcut icon" href="friiishoplogo-txt.png" type="image/png" />
<style type="text/css">
body {
background-color: #f1f1f1;
}
.flex-container {
display: flex;
justify-content: center;
}
.flex-container > div {
background-color: #ebe9e8;
width: 200px;
margin: 10px;
text-align: center;
line-height: 10px;
border-radius: 10px;
}.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 18.7px;
padding-right: 60px;
padding-left:60px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
transition: 0.4s;
}
.button:hover {
background-color: blue;
}
.box {
background-color: #ebe9e8;
display: inline-block;
border-radius: 5px;
padding-bottom: 10px;
padding-right: 15px;
padding-left: 15px;
padding-top: 10px;
}
.no-underline {
text-decoration: none;
color: white;
}
.bit-o-space {
margin-bottom: 50px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline;
margin-right:5px;
margin-left:5px;
font-size:120%;
}
.nav {
color: #0068ff;
text-decoration: none;
transition: 0.4s;
}
.nav:hover {
color: #004fc0;
text-decoration: underline;
}
.nav-active {
text-decoration: underline;
color: #929292;
}
</style>
</head>
<body>
<center>
<h1 style="font-size:500%"><a style="color:blue">friii</a><a style="color:orange">shop</a></h1>
<div class="bit-o-space"></div>
<h2 style="font-size:200%;color:#002768;text-decoration: underline;">There ain't any friii games here sun shine</h2>
</center>
<div class="flex-container">
<div>
<a href="http://friiishop.github.io/" class="no-underline button">Home</a>
<br>
</div>
</div>
<h6 style="float:left;position: absolute; bottom: 1px;">· © friiishop.github.io</h6>
</body>
</html>