-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (61 loc) · 1.86 KB
/
Copy pathindex.html
File metadata and controls
68 lines (61 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Launcher</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 640px;
width: 480px;
background-image: url('src/assets/banner5.png');
background-size: 480px 640px;
background-position: top left;
background-repeat: no-repeat;
}
.container {
text-align: center;
padding: 20px;
border-radius: 10px;
}
button {
margin-top: 350px;
padding: 10px 20px;
font-family:'Courier New', Courier, monospace;
font-size: 40px;
cursor: pointer;
background-color: rgb(230, 86, 198);
border: none;
border-radius: 5px;
transition: color 0.3s;
font-weight: bold;
letter-spacing: 5px;
text-shadow:
0 0 5px rgba(255, 255, 255, 1.0),
0 0 10px rgba(255, 255, 255, 0.8),
0 0 15px rgba(255, 255, 255, 0.6),
0 0 20px rgba(255, 255, 255, 0.4),
0 0 25px rgba(255, 255, 255, 0.2);
}
button:hover {
background-color: #a0217a;
}
</style>
</head>
<body>
<div class="container">
<button id="startButton">START</button>
</div>
<script>
document.getElementById('startButton').addEventListener('click', function () {
window.location.href = 'index1.html';
});
</script>
</body>
</html>