forked from KiaanCastillo/Pure-CSS-Multilayer-Parallax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (63 loc) · 2.26 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>2019</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/main.css" />
<link
href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css"
rel="stylesheet"
/>
</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>Level Up Inc.</h2>
<ul>
<li><a href="#">Passions</a></li>
<li><a href="#">Goals</a></li>
<li><a href="#" class="btn">Get Started Now</a></li>
</ul>
<div class="year-container">
<h1>2</h1>
<h1>0</h1>
<h1>1</h1>
<h1>9</h1>
</div>
<div class="social-container">
<a href="https://github.com/KiaanCastillo" target="_blank"
><i class="icon ion-logo-github"></i
></a>
<a href="https://www.instagram.com/craftedbykiaan/" target="_blank"
><i class="icon ion-logo-instagram"></i
></a>
<a href="https://dribbble.com/kiaancastillo" target="_blank"
><i class="icon ion-logo-dribbble"></i
></a>
<a href="https://www.youtube.com/c/KiaanCastillo" target="_blank"
><i class="icon ion-logo-youtube"></i
></a>
</div>
</div>
</div>
<div class="parallax__group info-container">
<img src="./img/concert.jpg" alt="Lively and colourful concert" />
<div class="text-container">
<h2>This is your year.</h2>
<p>What would life be if we had no courage to attempt anything?</p>
<p>- Vincent Van Gogh</p>
<a href="#" class="btn">Get Started Now</a>
</div>
</div>
</div>
</body>
</html>