-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 2.62 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
<!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">
<title>Parallax Scrolling Effect</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="container">
<h3 class="logo">Parallax<span>Website</span></h3>
<div class="hamburger-menu">
<div class="bar"></div>
</div>
</div>
</nav>
<h1 class="big-title translate" data-speed="0.1">Discover</h1>
<img src="img/person.png" class="person translate" data-speed="-0.25" alt="">
<img src="img/mountain1.png" class="mountain1 translate" data-speed="-0.2" alt="">
<img src="img/mountain2.png" class="mountain2 translate" data-speed="0.4" alt="">
<img src="img/mountain3.png" class="mountain3 translate" data-speed="0.3" alt="">
<img src="img/sky.png" class="sky translate" data-speed="0.5" alt="">
</header>
<section>
<div class="shadow"></div>
<div class="container">
<div class="content opacity">
<h3 class="title">
You must be a pioneer
<div class="border"></div>
</h3>
<p class="text">The world is full of possibilities. Every day we discover something new, be it a new technology, a new way of thinking, or simply a new way of looking at the world.
If you want something more from life, you must be a pioneer. You must be willing to step outside the box and explore new horizons.
Here are some reasons why you should be a pioneer:
You can change the world. Great discoverers changed the world for the better. They discovered new lands, invented new technologies and changed our understanding of the world.
You can find your calling. When you are a pioneer, you can find your passion and your calling. You can do what you love and help others at the same time.
You can live a full life. The life of a pioneer is a life full of adventure and discovery. This is a life that is never boring.
If you are ready for new challenges, then you are ready to be a pioneer. Get started today and open up a new world of possibilities.</p>
</div>
<div class="imgContainer opacity">
<img src="img/image.jpg" alt="">
</div>
</div>
</section>
<script src="app.js"></script>
</body>
</html>