-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (51 loc) · 1003 Bytes
/
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
<!-- <!DOCTYPE html> -->
<html lang="en">
<head>
<title>VaporWave Endurance</title>
<style>
a:link {
color: magenta;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: magenta;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: yellow;
background-color: transparent;
text-decoration: none;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: none;
}
body{
background-image: url("background.jpg");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position: absolute;
top: 0;
left: 0;
min-width: 50%;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div align="center">
<p style="font-family: 'Lucida Console', 'Courier New'; font-size: 40px; color: #fe37fd">
Vaporwave Endurance
<br />
<br />
<br />
<a href='VaporwaveEndurance.html'> Play</a>
</div>
</body>
</html>