-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
66 lines (61 loc) · 1.83 KB
/
resources.html
File metadata and controls
66 lines (61 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Very important Felix Visgilio fanpage">
<meta name="keywords" content="Felix Visgilio, fanpage, fan site">
<meta name="author" content="Ivy Holiday">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Felix Visgilio Fanpage</title>
<style>
body {
background-color: #79d7fd;
text-align: center;
}
.navbar {
background-color: #00bbfa;
color: white;
display: flex;
justify-content: center; /* Centers the items horizontally */
align-items: center;
padding: 15px 20px;
}
/* Make sure links are evenly spaced */
.nav-links {
list-style: none;
display: flex;
gap: 20px; /* Adds spacing between links */
padding: 0;
margin: 0;
}
.nav-links li {
display: inline;
}
.nav-links a {
text-decoration: none;
color: white;
font-size: 1.2em;
}
.nav-links a:hover {
color: #f00400;
}
.menu-toggle {
display: none;
font-size: 1.8em;
cursor: pointer;
}
</style>
<body>
<nav class="navbar">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<!-- <li><a href="resources.html">Resources</a></li> -->
<li><a href="games.html">Mini Games</a></li>
<li><a href="subpage.html">FAQs</a></li>
</ul>
<div class="menu-toggle" onclick="toggleMenu();">☰</div>
</nav>
<p>Resources</p>
<p>Coming soon!</p>
</body>
</html>