-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (55 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hype Techz HQ 2.0 Launcher</title>
<style>
body {
background-color: black;
font-family: 'Press Start 2P', cursive;
color: blue;
text-align: center;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
margin-bottom: 20px;
}
button {
background-color: blue;
color: black;
border: none;
padding: 15px 30px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: darkblue;
}
@font-face {
font-family: 'Press Start 2P';
src: url('https://fonts.cdnfonts.com/s/66238/PressStart2P-Regular.woff') format('woff');
}
</style>
<script>
let launcherEnabled = true; // Set to false to disable the launcher
function handleButtonClick() {
if (launcherEnabled) {
window.location.href = 'https://www.roblox.com/games/15852790828/hype-techz-hq-2-0';
} else {
alert('Cannot redirect to game. The launcher has been disabled.');
}
}
</script>
</head>
<body>
<h1>Hype Techz HQ 2.0 Launcher</h1>
<button onclick="handleButtonClick()">Play</button>
<p>This website is a launcher for Hype Techz HQ 2.0</p>
</body>
</html>