forked from swanie21/travel-parallax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Travel Parallax</title>
<link rel="stylesheet" href="css/main.css" media="screen">
</head>
<body>
<section class="img-1">
<h1>Travel</h1>
</section>
<section>
<div class="content">
<h3>My Love for Traveling</h3>
<p>I love traveling to new places and being immersed in a different culture.</p>
</div>
</section>
<section class="img-2">
<h1>Explore</h1>
</section>
<section class="static">
<div class="content">
<h3>Explore New Destinations</h3>
<p>Go to exotic places, go to less touristy places, take a guided tour(after all locals know best)!</p>
</div>
</section>
<section class="img-3">
<h1>Adventure</h1>
</section>
<section class="static">
<div class="content">
<h3>Take an Adventurous Risk</h3>
<p>Do something you wouldn't normally do, make new friends, get out of your comfort zone.</p>
</div>
</section>
<section class="img-4">
<h1>Indulge</h1>
</section>
<section class="static">
<div class="content">
<h3>Indulge and Treat Yourself</h3>
<p>Whether it's food or a massage, you're on a trip, so make the best out of it.</p>
</div>
</section>
</body>
</html>