This repository was archived by the owner on Sep 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 1.71 KB
/
index.html
File metadata and controls
67 lines (63 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nebula FNF</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #4B0082; /* Purple background */
color: white;
margin: 0;
padding: 0;
}
header {
background-color: #6A0DAD; /* Lighter purple */
text-align: center;
padding: 20px;
}
h1 {
margin: 0;
font-size: 36px;
}
nav {
display: flex;
justify-content: center;
margin-top: 20px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
font-size: 18px;
margin: 0 10px;
background-color: #8A2BE2; /* Another shade of purple */
border-radius: 5px;
transition: background-color 0.3s;
}
nav a:hover {
background-color: #9932CC; /* Hover effect */
}
footer {
background-color: #6A0DAD;
text-align: center;
padding: 20px;
margin-top: 40px;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Nebula FNF</h1>
</header>
<nav>
<a href="https://nebulafnf.github.io/starengine-guide/" target="_blank">Star Engine Guide</a>
</nav>
<footer>
<p>The Star Engine guide is open-source and licensed under the Apache License 2.0 license.</a>.</p>
<p>Star Engine is not currently open-source.</a>.</p>
</footer>
</body>
</html>