-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (70 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Travel Landing Page</title>
</head>
<body>
<section class="showcase">
<header>
<h2 class="logo">Travel</h2>
<div class="toggle"></div>
</header>
<video src="resources/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. Iusto
adipisci tempore perspiciatis temporibus magni corporis soluta.
Aliquid unde repudiandae inventore!
</p>
<a href="#">Explore</a>
</div>
<ul class="social">
<li>
<a href="#">
<img
src="resources/facebook_icon.png"
class="icon facebook"
alt="fb"/></a>
</li>
<li>
<a href="#">
<img
src="resources/instagram_icon.png"
class="icon instagram"
alt="insta"/></a>
</li>
<li>
<a href="#">
<img
src="resources/twitter_icon_crop.png"
class="icon twitter"
alt="tweet"/></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>
const menuToggle = document.querySelector(".toggle");
const showcase = document.querySelector(".showcase");
menuToggle.addEventListener("click", () => {
menuToggle.classList.toggle("active");
showcase.classList.toggle("active");
});
</script>
</body>
</html>