-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
92 lines (79 loc) · 2.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<Head>
<title>Fusion Games | Home</title>
<link rel="icon" type="image/x-icon" href="/imgs/Favicon.png">
</Head>
<style>
body {
background-image: url("imgs/fusion-background.png");
}
h1 {
color: white;
text-align: center;
font-family: Arial;
}
p {
font-family: Arial;
font-size: 20px;
color: white
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #04AA6D;
color: white;
}
button{
padding-top:20px;
padding-left:61px;
padding-bottom:20px;
padding-right:61px;
border-radius:40px;
background-color:rgb(0, 200, 20);
font-family: 'Kdam Thmor Pro', sans-serif;
font-size: large;
color: white;
box-shadow: 0px 11px 5px 0px rgb(64,62,62);
-webkit-box-shadow: 0px 11px 5px 0px rgb(64,62,62);
-moz-box-shadow: 0px 11px 5px 0px rgb(75, 74, 74);
transition: background-color 0.8s;
border: none;
}
button:hover{
background-color:rgba(2, 157, 18, 0.834);
}
button:active{
box-shadow: -2px 5px 5px 0px rgba(64,62,62,0.0.75);
-webkit-box-shadow: -2px 5px 5px 0px rgba(64,62,62,0.75);
-moz-box-shadow: -2px 5px 5px 0px rgba(64,62,62,0.75);
margin-top: 3px;
}
</style>
<html>
<body>
<div class="topnav">
<a href="/">Home</a>
<a href="/games">Games</a>
</div>
<h1>Welcome to Fusion games</h1>
<p>Fusion games is being worked on. Come back later maybe we will be done. (That will be a LONG time) -from Extraskilled56</p>
</body>
</html>