-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (102 loc) · 4.16 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
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<title>The Specialist | Home</title>
</head>
<body>
<header class="main-header">
<nav class="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>
<div class="container">
<h1 class="band-name">The Specialist</h1>
<button class="btn main-btn btn-header" type="button">Get Our Latest Album</button>
<br><br>
<button class="btn main-btn btn-play" type="button">
<i class="fas fa-play"></i>
</button>
</div>
</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 class="btn tour-item tour-btn" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 15</span>
<span class="tour-item tour-city">TORONTO, OM</span>
<span class="tour-item tour-arena">WEMBLEY STATIUM</span>
<button class="btn tour-item tour-btn" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">SEP 26</span>
<span class="tour-item tour-city">HAWAII, HA</span>
<span class="tour-item tour-arena">OHIO</span>
<button class="btn tour-item tour-btn" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">OCT 15</span>
<span class="tour-item tour-city">BOSTON, BN</span>
<span class="tour-item tour-arena">JIGGY LUBE LIVE</span>
<button class="btn tour-item tour-btn" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">NOV 5</span>
<span class="tour-item tour-city">LAS VEGAS, VA</span>
<span class="tour-item tour-arena">T-MOBILE ARENA</span>
<button class="btn tour-item tour-btn" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 16</span>
<span class="tour-item tour-city">PHOENIOX, AZ</span>
<span class="tour-item tour-arena">O2 ARENA</span>
<button class="btn tour-item tour-btn" type="button">BUY TICKETS</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="footer-div">
<h3 class="band-name">The Specialist</h3>
<ul class=" nav main-ul">
<li>
<a href="https://youtube.com" target="_blank">
<i class="fab fa-youtube"></i>
Wacth us
</a>
</li>
<li>
<a href="https://linkedin.com" target="_blank">
<i class="fab fa-linkedin"></i>
Chat with us
</a>
</li>
<li>
<a href="https://facebook.com" target="_blank">
<i class="fab fa-facebook"></i>
Chat with us
</a>
</li>
<li>
<a href="https://spotify.com" target="_blank">
<i class="fab fa-spotify"></i>
Listen to us
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>