-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Explore | Parallax</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald">
</head>
<body>
<!-- Section -->
<section>
<!-- Nav -->
<nav>
<h4>developedbydum</h4>
<a href="#" class="button">Sign Up</a>
</nav>
<!-- Container -->
<div class="container">
<h2 class="main-title">Explore.</h2>
<p class="main-subtitle">Scroll down</p>
<img class="bg1" src="img/bg1.png" alt="" />
<img class="girl" src="img/girl1.png" alt="" />
<img class="rock" src="img/rock1.png" alt="" />
</div>
<!-- Content -->
<div class="content">
<div class="content-images">
<div>
<img src="img/switzleft.png" alt="">
<h4>
Switzerland
</h4>
<h3>
Mountains of tibidado
</h3>
</div>
<div>
<img src="img/switzright.png" alt="">
<h4>
Switzerland
</h4>
<h3>
Mountains of tibidado
</h3>
</div>
</div>
<p class="text">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Aliquid recusandae aspernatur ea
necessitatibus! Quidem reiciendis doloribus possimus reprehenderit, consequatur fuga deserunt quo
dolorem ab blanditiis voluptas incidunt exercitationem? Tempore, veniam.
</p>
<p class="text">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Aliquid recusandae aspernatur ea
necessitatibus! Quidem reiciendis doloribus possimus reprehenderit, consequatur fuga deserunt quo
dolorem ab blanditiis voluptas incidunt exercitationem? Tempore, veniam.
</p>
</div>
</section>
<!-- Scipts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/ScrollMagic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/animation.gsap.js"></script>
<script src="app.js"></script>
</body>
</html>