-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
47 lines (39 loc) · 2.02 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/global.css">
<title>Cosmic Vovage | template</title>
<script src="./js/preload.js"></script>
<style>
</style>
</head>
<body>
<img class="stars" src="./assets/img/stars.png" alt="">
<div class="twinkling"></div>
<header class="container-fluid d-flex align-items-center sticky-top">
<nav class="container-xl navbar navbar-dark p-3">
<a class="navbar-brand" href="#">voyCo.</a>
<div class="navbar-nav d-flex flex-row align-items-center ">
<div class="d-flex flex-row align-items-center collapse ">
<a class="nav-link active" aria-current="page" href="/index.html">Home</a>
<a class="nav-link" href="./about.html">About</a>
<a class="nav-link" href="./destinations.html">Destinations</a>
<a class="nav-link" href="./contact.html">Contact Us</a>
</div>
<button class="nav-link nav-login" onClick="profile()"><span class="fa-solid fa-user"></span></button> <a href="javascript:void(0);" class="nav-ham" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</nav>
</header>
<footer class="footer mt-auto py-3 text-center">
Khushal Naik Creations
</footer>
<script src="./js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>