-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Select - News</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<img src="/logobeeg.png" width="1000" class="center" style="max-width:100%;height:auto;">
<br>
<div class="container">
<ul class="myUL">
<li style="font-size:1.7vw" class="active"><a href="./">News</a></li>
<li style="font-size:1.7vw"><a href="music">Music</a>
<li style="font-size:1.7vw"><a href="shows">Shows</a></li>
<li style="font-size:1.7vw"><a href="merch">Merch</a></li>
<li style="font-size:1.7vw"><a href="media">Media</a></li>
<li style="font-size:1.7vw"><a href="contact">Contact</a></li>
<div class="dropdown">
<button class="dropbtn" style="font-size:1.7vw">More
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="about">About</a>
<a href="lyrics">Lyrics</a>
</div>
</div>
</ul>
</div>
<h3>Welcome!</h3>
<p>
Welcome to our official website! Your one stop shop for everything relating to The Select.
<br>
Head over to the music page to listen to our new EP!
</p>
<br><br><br>
<footer>
<h5>© 2024 The Select Inc.</h5>
</footer>
</body>
</html>