-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (110 loc) · 3.65 KB
/
index.html
File metadata and controls
110 lines (110 loc) · 3.65 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
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<title>The Generics</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<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>
<hr>
<h1><a href="#">The Generics</a></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>
<a href="https://www.youtube.com" target="_blank">
<img src="Images/YouTube Logo.png">
</a>
</li>
<li>
<a href="https://www.spotify.com" target="_blank">
<img src="Images/Spotify Logo.png">
</a>
</li>
<li>
<a href="https://www.facebook.com" target="_blank">
<img src="Images/Facebook Logo.png">
</a>
</li>
</ul>
</footer>
</body>
</html>