-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (114 loc) · 3.73 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
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Parallax Landing Page</title>
</head>
<body>
<section class="section-top">
<div class="content rellax" data-rellax-speed="5">
<h1>Community Based Driven Website</h1>
<a href="#" class="btn">Learn More</a>
</div>
</section>
<section class="section-stream">
<img
src="https://i.ibb.co/TvdbMhQ/play-button.png"
alt=""
class="play rellax"
data-rellax-speed="-1"
data-rellax-xs-speed="-5"
data-rellax-mobile-speed="-5"
/>
<div class="content rellax" data-rellax-speed="10">
<div>
<h2 class="secondary-text">Stream Everything</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi
sunt eius magni eaque nobis recusandae? Blanditiis perspiciatis
nulla odio molestiae!
</p>
</div>
<div>
<h2 class="secondary-text">Short is the New Long</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi
sunt eius magni eaque nobis recusandae? Blanditiis perspiciatis
nulla odio molestiae!
</p>
</div>
</div>
</section>
<section class="section-grid">
<div
class="rellax"
data-rellax-speed="1"
data-rellax-xs-speed="4"
data-rellax-mobile-speed="4"
>
<i class="fas fa-video fa-3x secondary-text"></i>
<h2>Watch<span class="secondary-text dot">.</span></h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore, omnis
recusandae. Temporibus sint voluptates repellat non labore et
voluptatum officiis!
</p>
</div>
<div
class="rellax"
data-rellax-speed="4"
data-rellax-xs-speed="4"
data-rellax-mobile-speed="4"
>
<i class="fas fa-users fa-3x secondary-text"></i>
<h2>Share<span class="secondary-text dot">.</span></h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore, omnis
recusandae. Temporibus sint voluptates repellat non labore et
voluptatum officiis!
</p>
</div>
<div
class="rellax"
data-rellax-speed="7"
data-rellax-xs-speed="4"
data-rellax-mobile-speed="4"
>
<i class="fas fa-book fa-3x secondary-text"></i>
<h2>Learn<span class="secondary-text dot">.</span></h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore, omnis
recusandae. Temporibus sint voluptates repellat non labore et
voluptatum officiis!
</p>
</div>
</section>
<footer class="footer">
<ul>
<li><a href="#">Faq</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Private Notice</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About Us</a></li>
</ul>
</footer>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/rellax/1.12.1/rellax.min.js"
integrity="sha256-+xf9aJnHocnmrigq2hIDJGBSAnJdF5NH+Ooe5J2PHiI="
crossorigin="anonymous"
></script>
<script>
// Init Rellax
let rellax = new Rellax(".rellax");
</script>
</body>
</html>