forked from Textureman35/Textureman35.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend.html
43 lines (43 loc) · 1.83 KB
/
backend.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iHub 2 Backend</title>
<style>
/* Add any additional styling here */
body {
font-family: Arial, sans-serif;
text-align: center;
}
.button-container {
margin-top: 20px;
}
.button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
background-color: #0074D9;
color: #FFFFFF;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Welcome to iHub 2 Backend</h1>
<div class="button-container">
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 1</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 2</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 3</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 4</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 5</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 6</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 7</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 8</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 9</button>
<button class="button" onclick="window.location.href='/ihub2games/example.html'">Button 10</button>
</div>
</body>
</html>