-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section class="showcase">
<header>
<h2 class="logo">Travel</h2>
<div class="toggle"></div>
</header>
<video src="video.mp4" muted loop autoplay></video>
<div class="overlay"></div>
<div class="text">
<h2>Never Stop</h2>
<h3>Exploring The World</h3>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Tempora fuga
sit molestias a voluptas, quas rerum consequuntur quibusdam illo
repudiandae?
</p>
<a href="#">Explore More</a>
</div>
<ul class="social">
<li>
<a href="#"><img src="./images/fb.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="./images/ig.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="./images/tw.png" alt="" /></a>
</li>
</ul>
</section>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="#">Blog</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="copyright">
<h3>©2021 Travel All Rights Reserved.</h3>
</div>
</div>
<script src="app.js"></script>
</body>
</html>