-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
111 lines (89 loc) · 3.69 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
103
104
105
106
107
108
109
110
111
<!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">
<title>Frontend Philip</title>
<link href="styles/style.css" rel="stylesheet">
</head>
<body class="v3" id="homePage">
<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/jacobCollier.png" alt="Jacob Collier" />
<img src="images/djesse.png" alt="Djesse" />
<h2>Vol. 3</h2>
</header>
<main>
<section>
<div>
<button class="button1" onclick="this.blur();"><img src="images/playButton.png" height="65px" width="65px" /></button>
<div>
<!-- alleen .active video is zichtbaar -->
<video width="600">
<source src="media/videoVol1.mp4" type="video/mp4" />
</video>
<video width="600">
<source src="media/videoVol2.mp4" type="video/mp4" />
</video>
<video width="600" class="active">
<source src="media/videoVol3.mp4" type="video/mp4" />
</video>
<video width="600">
<source src="media/videoVol4.mp4" type="video/mp4" />
</video>
<!-- Buttons over video -->
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<button class="button1" onclick="this.blur();"><img src="images/playButton.png" height="65px" width="65px" /></button>
</div>
<button class="button1" id="soundButton" onclick="this.blur();">Give me a sound</button>
</section>
<section>
<ul id="redirect">
<li><a href="http://smarturl.it/DjesseV1" target="_blank">Vol 1</a></li>
<li><a href="https://jacobcollier.lnk.to/DjesseVol2" target="_blank">Vol 2</a></li>
<li class="active"><a href="https://jacobcollier.lnk.to/DjesseVol2" target="_blank">Vol 3</a></li>
<li><a>Vol 4</a></li>
</ul>
<button class="button2" onclick="this.blur();">Djesse's mailing list</button>
</section>
<section>
<article>
<img src="images/sleeping.jpg" />
<h2>Sleeping on my Dreams</h2>
<a href="https://www.youtube.com/watch?v=dR4IwtiEbyo&ab_channel=JacobCollier" target="_blank"><img src="images/playButton.png" height="65px" width="65px" /></a>
</article>
<button class="button2" onclick="this.blur();">Listen to Djesse Vol. 3</button>
</section>
</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>