-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (98 loc) · 3.18 KB
/
index.html
File metadata and controls
98 lines (98 loc) · 3.18 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
<!DOCTYPE html>
<html>
<head>
<title>The Generics</title>
<meta name="description" content="This is the description">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<nav>
<ul>
<li>HOME</li>
<li>STORE</li>
<li>ABOUT</li>
</ul>
</nav>
<hr>
<h1>The Generics</h1>
<button type="button">Get our Latest Album</button>
<br>
<br>
<!-- TODO: Find a suitable background image -->
<button type="button">►</button>
</header>
<section>
<h2>TOURS</h2>
<div>
<div>
<strong>JUL 16</strong>
<>
<span>DETROIT, MI</span>
<>
<span>DTE ENERGY MUSIC THEATRE</span>
<>
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 19</strong>
<>
<span>TORONTO, ON</span>
<>
<span>BUDWEISER STAGE</span>
<>
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 22</strong>
<>
<span>BRISTOW, VA</span>
<>
<span>JIGGY LUBE LIVE</span>
<>
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>JUL 29</strong>
<>
<span>PHOENIX, AZ</span>
<>
<span>AK-CHIN PAVILION</span>
<>
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>AUG 2</strong>
<>
<span>LAS VEGAS, NV</span>
<>
<span>T-MOBILE ARENA</span>
<>
<button type="button">BUY TICKETS</button>
<hr>
</div>
<div>
<strong>AUG 7</strong>
<>
<span>CONCORD, CA</span>
<>
<span>CONCORD PAVILION</span>
<>
<button type="button">BUY TICKETS</button>
</div>
</div>
</section>
<footer>
<h3>The Generics</h3>
<ul>
<li><img src="Images/YouTube Logo.png"></li>
<li><img src="Images/Spotify Logo.png"></li>
<li><img src="Images/Facebook Logo.png"></li>
</ul>
</footer>
</body>
</html>