forked from DuncanFV/First_Web_Page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (96 loc) · 4.17 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
<!-- saved from url=(0066)file:///C:/Users/dunca/Desktop/Coding/WCSC%20Internship/index.html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Porcupines</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="style.css" type="text/css">
</head><body>
<header class="main-header">
<nav class="nav main-nav">
<ul>
<li><a href="file:///C:/Users/dunca/Desktop/Coding/WCSC%20Internship/index.html">HOME</a></li>
<li><a href="file:///C:/Users/dunca/Desktop/Coding/WCSC%20Internship/store.html">STORE</a></li>
<li><a href="file:///C:/Users/dunca/Desktop/Coding/WCSC%20Internship/about.html">ABOUT</a></li>
</ul>
</nav>
<hr>
<h1 class="band-name band-name-large">Porcupines</h1>
<div class="container">
<button class="btn btn-header" type="button">Get Our Latest Album</button>
</div>
<br><br>
<button class="btn btn-header btn-play" type="button">►</button>
</header>
<section class="content-section container">
<h2 class="section header">TOURS</h2>
</section>
<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 btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
<div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 19</span>
<span class="tour-item tour-city">TORONTO, ON</span>
<span class="tour-item tour-arena">BUDWEISER STAGE</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
<div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 22</span>
<span class="tour-item tour-city">BRISTOW, VA</span>
<span class="tour-item tour-arena">JIGGY LUBE LIVE</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
<div>
<div class="tour-row">
<span class="tour-item tour-date">JUL 29</span>
<span class="tour-item tour-city">PHOENIX, AZ</span>
<span class="tour-item tour-arena">AK-CHIN PAVILION</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
<div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 2</span>
<span class="tour-item tour-city">LAS VEGAS, NV</span>
<span class="tour-item tour-arena">T-MOBILE ARENA</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
<div>
<div class="tour-row">
<span class="tour-item tour-date">AUG 7</span>
<span class="tour-item tour-city">CONCORD, CA</span>
<span class="tour-item tour-arena">CONCORD PAVILION</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">Porcupines</h3>
<ul class="nav footer-nav">
<li>
<a href="https://youtube.com/" target="_blank">
<img src="./index_files/Youtube Logo.png" height="50" width="50">
</a>
</li>
<li>
<a href="https://spotify.com/" target="_blank">
<img src="./index_files/Spotify Logo.png" height="50" width="50">
</a>
</li>
<li>
<a href="https://facebook.com/" target="_blank">
<img src="./index_files/Facebook Logo.png" height="50" width="50">
</a>
</li>
</ul>
</div>
</footer>
</body></html>