-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (90 loc) · 4.19 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
<!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">
<meta name="description" content="This is the description">
<title>The Generics | Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="mainHeader">
<nav class="nav mainNav">
<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="bandName bandNameLarge">The Generics</h1>
<!-- TODO : Find a suitable background -->.
<div class="container">
<button type="button" class="btn btnHeader">Get our latest album</button>
<button type="button" class="btn btnHeader btnPlay">►</button>
</div>
</header>
<section class="contentSection container">
<h2 class="sectionHeader">Tours</h2>
<div>
<div class="tourRow">
<span class="tourItem tourDate">JUL 16</span>
<span class="tourItem tourCity">DETROIT, MI</span>
<span class="tourItem tourArena">DTE ENERGY MUSIC THEATRE</span>
<button type="button" class="btn tourItem tourBtn btnPrimary">BUY TICKETS</button>
</div>
<div class="tourRow">
<span class="tourItem tourDate">JUL 19</span>
<span class="tourItem tourCity">TORONTO, ON</span>
<span class="tourItem tourArena">BUDWEISER STAGE</span>
<button type="button" class="btn tourItem tourBtn btnPrimary">BUY TICKETS</button>
</div>
<div class="tourRow">
<span class="tourItem tourDate">JUL 22</span>
<span class="tourItem tourCity">BRISTOW, VA</span>
<span class="tourItem tourArena">JIGGY LUBE LIVE</span>
<button type="button" class="btn tourItem tourBtn btnPrimary">BUY TICKETS</button>
</div>
<div class="tourRow">
<span class="tourItem tourDate">JUL 29</span>
<span class="tourItem tourCity">PHOENIX, AZ</span>
<span class="tourItem tourArena">AK-CHIN PAVILLION</span>
<button type="button" class="btn tourItem tourBtn btnPrimary">BUY TICKETS</button>
</div>
<div class="tourRow">
<span class="tourItem tourDate">AUG 2</span>
<span class="tourItem tourCity">LAS VEGAS, NV</span>
<span class="tourItem tourArena">T-MOBILE ARENA</span>
<button type="button" class="btn tourItem tourBtn btnPrimary">BUY TICKETS</button>
</div>
<div class="tourRow">
<span class="tourItem tourDate">AUG 7</span>
<span class="tourItem tourCity">CONCORD, CA</span>
<span class="tourItem tourArena">CONCORD PAVILLION</span>
<button type="button" class="btn tourItem tourBtn btnPrimary">BUY TICKETS</button>
</div>
</div>
</section>
<footer class="mainFooter">
<div class="container mainFooterContainer">
<h3 class="bandName">The Generics</h3>
<ul class="nav footerNav">
<li><a href="https://youtube.com" target="_blank">
<img src="https://github.com/WebDevSimplified/Introduction-to-Web-Development/blob/master/Introduction%20to%20CSS/Lesson%201/Images/YouTube%20Logo.png?raw=true">
</a>
</li>
<li>
<a href="https://spotify.com" target="_blank">
<img src="https://github.com/WebDevSimplified/Introduction-to-Web-Development/blob/master/Introduction%20to%20CSS/Lesson%201/Images/Spotify%20Logo.png?raw=true">
</a>
</li>
<li>
<a href="https://facebook.com" target="_blank">
<img src="https://github.com/WebDevSimplified/Introduction-to-Web-Development/blob/master/Introduction%20to%20CSS/Lesson%201/Images/Facebook%20Logo.png?raw=true">
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>