-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 4.23 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
<!DOCTYPE html>
<html>
<head>
<title>Linkin Park</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="style.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>
<h1 class="band-name band-name-large">Linkin Park</h1>
<div class="container">
<button class="btn btn-header" type="button">Get the latest Album</button>
</div>
<button class="btn btn-header btn-play" type="button">►</button>
</header>
<section class="content-section container">
<h2 class="section-header">TOURS</h2>
<div>
<div class="tour-row">
<span class="tour-item tour-date">MAR 02</span>
<span class="tour-item tour-city">GERMANY</span>
<span class="tour-item tour-arena">BERLIN COLUMBIAHALLE</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">MAR 09</span>
<span class="tour-item tour-city">FRANCE</span>
<span class="tour-item tour-arena">PARIS ZENITH</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">MAR 10</span>
<span class="tour-item tour-city">UK</span>
<span class="tour-item tour-arena">LONDON ROUNDHOUSE</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">MAR 12</span>
<span class="tour-item tour-city">HUNGARY</span>
<span class="tour-item tour-arena">BUDAPEST ARENA</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">MAR 14</span>
<span class="tour-item tour-city">ITALY</span>
<span class="tour-item tour-arena">MILAN FABRIQUE</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">MAR 17</span>
<span class="tour-item tour-city">SWITZERLAND</span>
<span class="tour-item tour-arena">ZURICH HALLE 622</span>
<button type="button" class="btn tour-item tour-btn btn-primary">BUY TICKETS</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="main-footer-container">
<h3 class="band-name">Linkin Park</h3>
<ul class="nav footer-nav">
<li>
<a href="https://youtube.com" target="_blank">
<img src="Images/Youtube Vector White.png" alt = "YouTube-logo" width="4%">
</a>
</li>
<li>
<a href="https://spotify.com" target="_blank">
<img src="Images/Spotify Vector White 2.png" alt = "Spotify-logo" width="4%">
</a>
</li>
<li>
<a href="https://facebook.com" target="_blank">
<img src="Images/Facebook Vector White 2.png" alt = "Facebook-logo" width="4%">
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>