-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (80 loc) · 5.29 KB
/
index.html
File metadata and controls
104 lines (80 loc) · 5.29 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
<!DOCTYPE html>
<html>
<head>
<title>Foo Fighters | Home</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="main-header">
<nav class="nav main-nav">
<ul>
<li><a href="index.html">HOME</a></li>
<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">Foo Fighters</h1>
<div class="container">
<a href="https://music.apple.com/us/album/concrete-and-gold/1249068417"><button class="btn btn-header" type="button">Get our Latest Album</button></a>
</div>
<a href="https://open.spotify.com/album/6KMkuqIwKkwUhUYRPL6dUc"><button class="btn btn-header btn-play" type="button">►</button></a>>
</header>
<section class="content-section container">
<h2 class="section-header">TOURS</h2>
<img src="Images/live.jpg" class="live-image">
<p class="live-text">
Foo Fighters performing live at The Madison Square Garden in New York City.
</p>
<div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 16</span>
<span class="tour-item tour-city">DETROIT, MI</span>
<span class="tour-item tour-arena">DTE ENERGY MUSIC THEATRE</span>
<span><button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button></span>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 19</span>
<span class="tour-item tour-city">TORONTO, ON</span>
<span class="tour-item tour-arena">BUDWEISER STAGE</span>
<span><button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button></span>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 22</span>
<span class="tour-item tour-city">BRISTOW, VA</span>
<span class="tour-item tour-arena">JIGGY LUBE LIVE</span>
<span><button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button></span>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 29</span>
<span class="tour-item tour-city">PHOENIX, AZ</span>
<span class="tour-item tour-arena">AK-CHIN PAVILION</span>
<span><button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button></span>
</div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 2</span>
<span class="tour-item tour-city">LAS VEGAS, NV</span>
<span class="tour-item tour-arena">T-MOBILE ARENA</span>
<span><button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button></span>
</div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 7</span>
<span class="tour-item tour-city">CONCORD, CA</span>
<span class="tour-item tour-arena">CONCORD PAVILION</span>
<span><button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button></span>
</div>
</div>
</di>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">Foo Fighters</h3>
<ul class="nav footer-nav">
<li><a href="https://www.youtube.com/channel/UCi2KNss4Yx73NG0JARSFe0A" target="_blank"><img src="Images/yt logo.png" width="80 px"></a></li>
<li><a href="https://open.spotify.com/artist/7jy3rLJdDQY21OgRLCZ9sD" target="_blank"><img src="Images/st logo.png" width="80 px"></a></li>
<li><a href="https://www.facebook.com/foofighters/" target="_blank"><img src="Images/fb logo.png" width="80 px"></a></li>
</ul>
</div>
</footer>
</body>
</html>