-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (104 loc) · 3.32 KB
/
index.html
File metadata and controls
117 lines (104 loc) · 3.32 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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;
}
.button-row {
display: flex;
gap: 15px; /* spacing between buttons */
justify-content: center; /* center them horizontally */
margin-top: 20px;
}
.spotify-button, .apple-button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.spotify-button {
background-color: #1DB954;
color: white;
}
.spotify-button:hover {
background-color: #1ed760;
}
.apple-button {
background-color: #000;
color: white;
}
.apple-button:hover {
background-color: #333;
}
.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>
</head>
<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>
<h1>Felix Visgilio Fanpage</h1>
<p>This page is not officially associated with Felix Visgilio</p>
<img src="felix.jpg" width="300" height="400" alt="Felix Visgilio">
<p></p>
<br>
<div class="button-row">
<button class="spotify-button" onclick="window.open('https://open.spotify.com/track/7ppPZa3TRUSGKaks9wH7VT?si=d36971b717df407b', '_blank')">
🎧 Play on Spotify
</button>
<button class="apple-button" onclick="window.open('https://music.apple.com/us/album/dont-look-back-in-anger-remastered/1525933483?i=1525933492', '_blank')">
🍎 Play on Apple Music (Felix Style)
</button>
</div>
<h2>Contact</h2>
<p>If you have Felix Visgilio™ content, you can email me:
<a href="mailto:ivyholiday27@gmail.com"> here </a>
</p>
</body>
</html>