-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParallax.html
More file actions
49 lines (41 loc) · 1.57 KB
/
Parallax.html
File metadata and controls
49 lines (41 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="Parallax.css">
</head>
<body>
<div class="container">
<h1>Parallax Website</h1>
<p>Parallax scrolling is a web site trend where the background content (i.e. an image) is moved at a different speed than the foreground content while scrolling. Click on the links below to see the difference between a website with and without parallax scrolling.</p>
<a href="#">Learn more</a>
</div>
<div class="blank"></div>
<div class="container second">
<div class="item">
<div class="img img-first"></div>
<div class="card">
<h3>Rock climbing</h3>
<p>The goal is to reach the summit of a formation or the endpoint of a usually pre-defined route without falling</p>
<a href="#">Learn more</a>
</div>
</div>
<div class="item">
<div class="img img-second"></div>
<div class="card">
<h3>Caving</h3>
<p>Exploring underground through networks of tunnels and passageways, which can be natural or artificial.</p>
<a href="#">Learn more</a>
</div>
</div>
<div class="item">
<div class="img img-third"></div>
<div class="card">
<h3>Parachuting</h3>
<p>Jumping from an aeroplane and falling through the air before opening your parachute.</p>
<a href="#">Learn more</a>
</div>
</div>
</div>
<div class="blank"></div>
</body>
</html>