-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FETRPG</title>
<style>
html,
body {
margin: 0;
height: 100vh;
width: 100vw;
overflow: hidden;
background: #000; /* Black background */
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
.container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
color: #5C4033; /* White color for visibility */
margin: 0;
padding-top: 10px; /* Padding at the top */
width: 100%;
text-align: center;
}
.version-text {
color: #5C4033; /* White color for visibility */
font-size: 1em; /* Adjust size as needed */
margin-top: 5px; /* Space between the title and version text */
}
</style>
</head>
<body>
<div class="container" id="game-container">
<!-- Game title -->
<h1>FET RPG</h1>
<!-- Version text -->
<p class="version-text">Beta v. 1.0</p>
<!-- Your game's canvas or additional content goes here -->
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>