-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.91 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
<!DOCTYPE html>
<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</title>
</head>
<body>
<body>
<section class="showcase">
<header>
<h2 class="logo">Travel</h2>
<div class="toggle"></div>
</header>
<video src="https://designsupply-web.com/samplecontent/vender/codepen/20181014.mp4" muted loop
autoplay></video>
<!-- Download Video Source and host the file on your own server -->
<!-- For example: https://www.pexels.com/video/aerial-view-of-beautiful-resort-2169880/ -->
<div class="overlay"></div>
<div class="text">
<h2>Never Stop</h2>
<h3>Exploring The World</h3>
<p>
Travel far and wide, for in exploring the world, you discover the vastness of your own potential.
</p>
<a href="#">Explore</a>
</div>
<ul class="social">
<li>
<a href="#"><img src="https://i.ibb.co/x7P24fL/facebook.png" /></a>
</li>
<li>
<a href="#"><img src="https://i.ibb.co/Wnxq2Nq/twitter.png" /></a>
</li>
<li>
<a href="#"><img src="https://i.ibb.co/ySwtH4B/instagram.png" /></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</a></li>
</ul>
</div>
<script src="script.js"></script>
</body>
</body>
</html>