-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 4.96 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
<!DOCTYPE html>
<html>
<head>
<title>THE FALL OF TROY</title>
<meta name="description" content="The classic American post-hardcore band from Mukilteo, Washington.">
<link rel ="stylesheet" href="styles.css">
<script src="index.js" async></script>
</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">The Fall of Troy</h1>
<div class="container">
<a style="text-decoration: none;" target="_blank" href="https://open.spotify.com/album/4yGGtM3VghcKn4dPYZ2xFE"><button class="btn btn-header" type="button">DOPPLEGANGER' OUT NOW</button></a>
</div>
<button class="btn btn-header btn-play" type="button">▶️</button>
</header>
<section class="content-section container">
<h2 class="section-header">TOURS</h2>
<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>
<button type="button" class="btn btn-primary tour-btn btn-primary" onclick="window.open('https://www.songkick.com/artists/461914-fall-of-troy','_blank');">BUY TICKETS</button>
</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>
<button type="button" class="btn btn-primary tour-btn btn-primary" onclick="window.open('https://www.songkick.com/artists/461914-fall-of-troy','_blank');">BUY TICKETS</button>
</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">JIFFY LUBE LIVE</span>
<button type="button" class="btn btn-primary tour-btn btn-primary" onclick="window.open('https://www.songkick.com/artists/461914-fall-of-troy','_blank');">BUY TICKETS</button>
</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 PAVILLION</span>
<button type="button" class="btn btn-primary tour-btn btn-primary" onclick="window.open('https://www.songkick.com/artists/461914-fall-of-troy','_blank');">BUY TICKETS</button>
</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>
<button type="button" class="btn btn-primary tour-btn btn-primary" onclick="window.open('https://www.songkick.com/artists/461914-fall-of-troy','_blank');">BUY TICKETS</button>
</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 PAVILLION</span>
<button type="button" class="btn btn-primary tour-btn btn-primary" onclick="window.open('https://www.songkick.com/artists/461914-fall-of-troy','_blank');">BUY TICKETS</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">The Fall of Troy</h3>
<ul class="nav footer-nav">
<li>
<a href="https://www.youtube.com/channel/UCnHYKgU2bwSMt4reSitcjWQ" target="_blank">
<img src="img/youtube.png">
</a>
</li>
<li>
<a href="https://open.spotify.com/artist/5fuQrhMRYMtoO9uOlFad4P" target="_blank">
<img src="img/spotify.png">
</a>
</li>
<li>
<a href="https://www.facebook.com/thefalloftroy/" target="_blank">
<img src="img/facebook.png">
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>