-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (94 loc) · 5.21 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
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
<!-- HOMEPAGE - when nothing is after the website URL
the URL: 127.0.0.1:5500
LOCAL HOST : PORT NUMBER
ADDRESS : APARTMENT
-->
<!DOCTYPE html>
<html class="site-background-color">
<head> <!-- head of internet search -->
<title>Mt. Joy | Homepage</title> <!-- Replaces Tab Name -->
<meta name="description" contents="This is the description"> <!-- shows on a google search -->
<link rel="stylesheet" href="styles.css" />
</head>
<head> <!-- head of index page -->
<body>
<header class="main-header">
<nav class="nav main-nav">
<ul>
<li><a href="index.html">HOME</a></li> <!-- <a> adds a link-->
<li><a href="store.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<h1 class="band-name band-name-large">Mt. Joy</h1>
<div class="container">
<button class="btn btn-header" type="button">Get our Latest Album</button>
</div>
<button class="btn btn-header btn-play" type="button">►</button>
</header>
<section class="content-section container">
<h2 class="section-header">TOUR</h2>
<div> <!-- different rows for tours -->
<div class="tour-row">
<span class="tour-item tour-date">FEB 17</span> <!-- HTML removes extra spaces-->
<span class="tour-item tour-city">CANCUN, MEXICO</span>
<span class="tour-item tour-arena">RIVERA MAYA FESTIVAL</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">FEB 26</span> <!-- HTML removes extra spaces-->
<span class="tour-item tour-city">TEMPLE, ARIZONA</span>
<span class="tour-item tour-arena">INNINGS FESTIVAL</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">APR 6</span> <!-- HTML removes extra spaces-->
<span class="tour-item tour-city">CHARLESTON, SC</span>
<span class="tour-item tour-arena">THE WINDJAMMER</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">APR 10</span> <!-- HTML removes extra spaces-->
<span class="tour-item tour-city">GREENVILLE, SC</span>
<span class="tour-item tour-arena">THE FOUNDRY AT JUDSON MILL</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">APR 11</span> <!-- HTML removes extra spaces-->
<span class="tour-item tour-city">BIRMINGHAM, AL</span>
<span class="tour-item tour-arena">AVONDALE BREWING COMPANY</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">APR 13</span> <!-- HTML removes extra spaces-->
<span class="tour-item tour-city">SAVANNAH, GA</span>
<span class="tour-item tour-arena">JOHNNY MERCER THEATRE</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">Mt. Joy</h3>
<ul class="nav footer-nav">
<li>
<a href="https://www.youtube.com/@MtJoyOfficial" target="_blank">
<img src="Images/YoutubeLinkButton.webp" width="45">
</a>
</li>
<li>
<a href="https://open.spotify.com/artist/69tiO1fG8VWduDl3ji2qhI" target="_blank">
<img src="Images/SpotifyLinkButton.webp" width="50">
</a>
</li>
<li>
<a href="https://www.instagram.com/mtjoyband/?hl=en" target="_blank">
<img src="Images/InstagramLinkButton.webp" width="30">
</a>
</li>
</ul>
</div>
</footer>
</body>
</head>
</html>