-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 1.53 KB
/
index.html
File metadata and controls
57 lines (57 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forge Engine</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background-color: #282c34;
color: #ffffff;
}
.container {
text-align: center;
padding: 20px;
border-radius: 8px;
background-color: #3a404d;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h1 {
color: #61dafb;
}
p {
margin-bottom: 20px;
}
.links a {
display: inline-block;
margin: 10px;
padding: 10px 20px;
background-color: #61dafb;
color: #282c34;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.links a:hover {
background-color: #21a1f1;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Forge Engine</h1>
<p>A powerful and flexible game engine built for creativity.</p>
<div class="links">
<a href="./docs/index.html">Documentation</a>
<a href="./engine/index.html">Launch Editor</a>
</div>
</div>
</body>
</html>