-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 1.68 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Travel Landing page</title>
</head>
<body>
<section class="showcase">
<header>
<h2 class="logo">Travel</h2>
<div class="toggle"></div>
</header>
<video src="video.mp4" autoplay muted loop></video>
<div class="overlay"></div>
<div class="text">
<h2>Never Stop</h2>
<h3>Exploring the World</h3>
<p>
“If you’re twenty-two, physically fit, hungry to learn and be better,
I urge you to travel – as far and as widely as possible. Sleep on
floors if you have to. Find out how other people live and eat and
cook, learn from them – where you go.”
</p>
<a href="#">Explore</a>
</div>
<ul class="social">
<li>
<a href="#"><img src="facebook.png" alt="facebook" /></a>
</li>
<li>
<a href="#"><img src="instagram.png" alt="instagram" /></a>
</li>
<li>
<a href="#"><img src="twitter.png" alt="twitter" /></a>
</li>
<li>
<a href="#"><img src="youtube.png" height="40px" alt="youtube" /></a>
</li>
</ul>
</section>
<div class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Destination</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact us</a></li>
<li><a href="#">Your Trip</a></li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>