forked from anubhav2202/imaze-22.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesc.html
89 lines (86 loc) · 2.92 KB
/
desc.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
<!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="desc.css" />
<title>Description</title>
</head>
<body>
<body>
<video muted loop autoplay class="clip" playsinline>
<source
src="./background-desc/Pexels Videos 2611250.mp4"
type="video/mp4"
/>
</video>
<div class="nav-container">
<nav>
<a href="./index.html">
<img
src="./images-desc/No bgImaze final white.png"
alt=""
id="logo"
/>
</a>
<div class="nav-links" id="navLinks">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
onclick="hideMenu()"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
<ul>
<li><a href="./index.html" onclick="hideMenu()">Home</a></li>
<li><a href="./page.html" onclick="hideMenu()">Events</a></li>
<li><a href="./test4.html" onclick="hideMenu()">Team</a></li>
<li><a href="./about.html" onclick="hideMenu()">About Us</a></li>
<li><a href="#" onclick="hideMenu()">Download Apk</a></li>
</ul>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-6 w-6 fa-bars"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
onclick="showMenu()"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M4 6h16M4 12h16M4 18h16"
/>
</svg>
<!-- <img src="./open.jpeg" alt="" class="fa fa-bars" onclick="showMenu()" /> -->
</nav>
</div>
<div class="box">
<img src="./images-desc/Kaun Banega Chemist.png" alt="">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illo, eum soluta rem amet maiores eos iusto cupiditate ex minus numquam animi possimus dolores quas debitis quia? Nemo dolorem quod sequi distinctio voluptas blanditiis ad doloremque ab ipsum, molestiae, culpa in maiores libero adipisci consectetur facilis non illo fugit cum consequatur. Dolores rem quaerat, autem at numquam nostrum iure architecto libero.</p>
</div>
<script>
var navLinks = document.getElementById("navLinks");
const bars = document.querySelector(".fa-bars");
function showMenu() {
navLinks.style.right = "0";
bars.classList.add("hidden");
}
function hideMenu() {
navLinks.style.right = "-250px";
bars.classList.remove("hidden");
}
</script>
</body>
</html>