-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (69 loc) · 3.5 KB
/
Copy pathindex.html
File metadata and controls
85 lines (69 loc) · 3.5 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
<html>
<header>
<title>About: John Mayer</title>
<meta name="Description" contents=" This is the description">
<link rel="stylesheet" href="JohnMayerStyle.css"/>
</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 class=nav>
<h1 class="band-name band-name-large">John Mayer</h1>
<div class="container">
<button type="button" class="btn btn-header">Get our Latest Album</button>
</div>
<button type="button" class="btn btn-header btn-play">►</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 tour-item tour-btn btn-primary">Buy Tickets</button>
</div>
<div CLASS="tour-row">
<span class="tour-item tour-date">Jul 24</span>
<span class="tour-item tour-city">Indianapolis, IN</span>
<span class="tour-item tour-arena">Bankers Life Field House</span>
<button type="button" class="btn tour-item tour-btn btn-primary">Buy Tickets</button>
</div>
<div CLASS="tour-row">
<span class="tour-item tour-date">Aug 2</span>
<span class="tour-item tour-city">Columbus, OH</span>
<span class="tour-item tour-arena">MAPRE Stadium</span>
<button type="button" class="btn tour-item tour-btn btn-primary">Buy Tickets</button>
</div>
<div CLASS="tour-row">
<span class="tour-item tour-date">Aug 10</span>
<span class="tour-item tour-city">Toronto, ON</span>
<span class="tour-item tour-arena">Rogers Centre</span>
<button type="button" class="btn tour-item tour-btn btn-primary">Buy Tickets</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class= "band-name">John Mayer</h3>
<ul class="nav footer-nav">
<li>
<a href="https://www.facebook.com/johnmayer/"target="_blank">
<img src="images/50-Best-Facebook-Logo-Icons-GIF-Transparent-PNG-Images-22.png"width=50 >
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCi1mYtUWs0JRkPl6bNVRL_Q"target="_blank">
<img src="images/580b57fcd9996e24bc43c545.png" width=50 >
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>