forked from bbiijjeett/webdesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdjsnake.html
More file actions
53 lines (53 loc) · 2.07 KB
/
djsnake.html
File metadata and controls
53 lines (53 loc) · 2.07 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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>DJ Snake</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="main.css" />
<link
href="https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css"
rel="stylesheet"
/>
<link rel="icon" href="play-button.png">
</head>
<body>
<div class="wrapper">
<div class="parallax__group hero-container">
<div class="parallax__layer sky"></div>
<div class="parallax__layer bushes"></div>
<div class="parallax__layer water"></div>
<div class="parallax__layer people1"></div>
<div class="parallax__layer people2"></div>
<div class="parallax__layer people3"></div>
<div class="parallax__layer hero-text">
<h2>DJ Snake</h2>
<ul>
<li><a href="https://djsnake.com/tour/">Tour</a></li>
<li><a href="https://www.pardonmyfrench-store.com/">Shop</a></li>
<li><a href="https://www.youtube.com/watch?v=NeRZ_tdD8KM" class="btn">Listen Now</a></li>
</ul>
<div class="social-container">
<a href="https://www.instagram.com/djsnake/" target="_blank"
><i class="icon ion-logo-instagram"></i
></a>
<a href="https://www.youtube.com/user/DjSnakeTV/" target="_blank"
><i class="icon ion-logo-youtube"></i
></a>
</div>
</div>
</div>
<div class="parallax__group info-container">
<!-- <img src="selena.jpg" alt="Lively and colourful concert" /> -->
<iframe src="https://www.youtube.com/embed/ixkoVwKQaJg">
</iframe>
<div class="text-container">
<h1>Music for everyone.</h1>
<p>People trust me because I've had success.</p>
<p>- DJ Snake</p>
<a href="https://www.youtube.com/watch?v=NeRZ_tdD8KM" class="btn">Listen Now</a>
</div>
</div>
</div>
</body>
</html>