-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtour.html
74 lines (64 loc) · 3.27 KB
/
tour.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Philip van Egmond">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Philip</title>
<link href="styles/style.css" rel="stylesheet">
</head>
<body class="v3" id="tourPage">
<span class="flash"></span>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tour.html">Tour</a></li>
<li><a href="">Store</a></li>
</ul>
</nav>
<img src="images/tourHeader.png" alt="Jacob Collier" width="400px" />
<img src="images/world.png" alt="Djesse" width="1200px" />
</header>
<main>
<h2>Americas:</h2>
<ul>
<li><p>Phoenix, AZ</p><button>Join the waitlist</button></li>
<li><p>Vancouver, BZ</p><button>Join the waitlist</button></li>
<li><p>Los Angeles, CA</p><button>Join the waitlist</button></li>
<li><p>San Diego, CA</p><button>Join the waitlist</button></li>
<li><p>San Diego, CA</p><button>Join the waitlist</button></li>
<li><p>San Diego, CA</p><button>Join the waitlist</button></li>
<li><p>San Diego, CA</p><button>Join the waitlist</button></li>
</ul>
<h2>EU & UK:</h2>
<ul>
<li><p>Vienna, Austria</p><button>Join the waitlist</button></li>
<li><p>Brussels, Belgium</p><button>Join the waitlist</button></li>
<li><p>Brno, Czech Republic</p><button>Join the waitlist</button></li>
<li><p>Amsterdam, Netherlands</p><button>Join the waitlist</button></li>
<li><p>Amsterdam, Netherlands</p><button>Join the waitlist</button></li>
<li><p>Amsterdam, Netherlands</p><button>Join the waitlist</button></li>
<li><p>Amsterdam, Netherlands</p><button>Join the waitlist</button></li>
</ul>
</main>
<footer>
<ul>
<li><a href="https://www.facebook.com/JCollierMusic/" target="_blank"><img src="images/facebook.png" alt="Facebook" width="35px" height="35px" /></a></li>
<li><a href="https://twitter.com/jacobcollier" target="_blank"><img src="images/twitter.png" alt="Twitter" width="35px" height="35px" /></a></li>
<li><a href="https://www.instagram.com/jacobcollier/" target="_blank"><img src="images/insta.png" alt="Instagram" width="35px" height="35px" /></a></li>
<li><a href="https://open.spotify.com/artist/0QWrMNukfcVOmgEU0FEDyD" target="_blank"><img src="images/spotify.png" alt="Spotify" width="35px" height="35px" /></a></li>
<li><a href="https://itunes.apple.com/artist/jacob-collier/730498854" target="_blank"><img src="images/apple.png" alt="iTunes" width="35px" height="35px" /></a></li>
<li><a href="https://www.youtube.com/channel/UCtmY49Zn4l0RMJnTWfV7Wsg" target="_blank"><img src="images/yt.png" alt="YouTube" width="35px" height="35px" /></a></li>
</ul>
<ul>
<li><a href="#">Contact</a></li>
<li><a href="#">Copyright Hajanga Records</a></li>
<li><a href="#">Privacy policy</a></li>
<li><a href="#">Terms & conditions</a></li>
<li><a href="#">Do not sell my personal information</a></li>
</ul>
</footer>
<script src="scripts/script.js"></script>
</body>
</html>