generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
114 lines (100 loc) · 4.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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">
<!-- Meta tags for search engines -->
<meta name="description"
content="Gateway to NE India. Your one-stop destination for travel information related to Northeast India. Northeast India Assam and Meghalaya.">
<meta name="keywords"
content="Northeast India, Northeast India travel guide, Northeast India tourism, Assam tourism, Meghalaya tourism, Northeast India tourism, Northeast India adventures, Northeast India travel">
<!-- Title of the website -->
<title>Gateway to NE India</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<!-- Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header -->
<header class="header">
<!-- Logo -->
<a href="index.html">
<img src="assets/images/gateway_to_ne_india_logo.webp" alt="Logo of Gateway to Northeast India">
</a>
<!-- Hamburger icon -->
<input type="checkbox" name="side-menu" id="side-menu">
<label for="side-menu" class="menu-toggle"><i class="fa-solid fa-bars"></i></label>
<!-- Menu -->
<nav>
<ul class="menu">
<li><a href="index.html" class="active"><i class="fa-solid fa-house"></i> Home</a></li>
<li><a href="explore.html"><i class="fa-regular fa-compass"></i> Explore</a></li>
<li><a href="travel.html"><i class="fa-solid fa-route"></i> Travel</a></li>
<li><a href="contact.html"><i class="fa-regular fa-envelope"></i> Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero video background -->
<div class="video-wrapper">
<video playsinline autoplay loop muted poster="assets/images/assam_vid_poster.png">
<source src="assets/videos/assam_video.webm" type="video/webm">
<source src="assets/videos/assam_video.mp4" type="video/mp4">
</video>
</div>
<!-- Main content -->
<main>
<!-- Welcome message in the front of the video background -->
<div class="welcome-message">
<h1 class="welcome-font-style">Welcome to Gateway to Northeast India!</h1>
<p class="welcome-font-style">Your one-stop destination for travel information related to Northeast India.
</p>
<p class="welcome-font-style">Be a part of this exciting journey and uncover the hidden gems of Northeast
India with us!</p>
<!-- Explore button -->
<a href="explore.html" class="visit-explore-btn"><i class="fa-regular fa-compass"></i>
Explore</a>
</div>
</main>
<!-- Footer -->
<footer>
<!-- Visit our social media header -->
<p id="visit-socialm">Visit our social media page:</p>
<!-- Social media buttons -->
<ul id="social-media">
<li>
<a href="https://www.instagram.com/" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.threads.net/" target="_blank" rel="noopener"
aria-label="Visit our Threads page (opens in a new tab)">
<i class="fa-brands fa-threads"></i>
</a>
</li>
<li>
<a href="https://www.x.com/" target="_blank" rel="noopener"
aria-label="Visit our X (formerly Twitter) page (opens in a new tab)">
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)">
<i class="fa-brands fa-facebook-f"></i>
</a>
</li>
</ul>
<!-- Copyright -->
<p id="copyright">© Gateway to NE India 2024</p>
</footer>
<!-- Font Awesome kit -->
<script src="https://kit.fontawesome.com/be0d508cf4.js" crossorigin="anonymous"></script>
</body>
</html>