-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
93 lines (81 loc) · 3.41 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<title> Citronics 2K22</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="nav">
<label class="logo"> CITRONICS <span> 2k22</span></label>
<ul class="navbar">
<label class="icon cancel-btn">
<i class="fas fa-times"></i>
</label>
<li><a class="active" href="#">Home</a></li>
<li> <a href="#"> Events </a> </li>
<li> <a href="#"> Timeline </a> </li>
<li> <a href="#"> Sponsors </a> </li>
<li> <a href="#"> Register </a> </li>
<li> <a href="#"> About Us </a> </li>
</ul>
<label class="icon menu-btn">
<i class="fas fa-bars"></i>
</label>
</nav>
<header>
<img class="mainLogo" src="Screenshot 2022-01-05 235354.png" alt="Logo">
</header>
<h1 class="contact-info"> Contact Information </h1>
<div class="contact">
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3683.0491188750993!2d75.88668611491167!3d22.614640885161183!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3962fb28a5660d8b%3A0x2a7a0698a930c80f!2sChameli%20Devi%20Group%20of%20Institutions!5e0!3m2!1sen!2sin!4v1641285805331!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowf.navbarlscreen="" loading="lazy"></iframe>
</div>
<div class="info">
<div class="address common">
<h1> Address </h1>
<p> Gram Umrikheda near toll naka,Khandawa Road , Indore </p>
</div>
<div class="contactInfo common">
<h1> Contact Us For Enquiry </h1>
<p> Shubham Jain </p>
<a href="tel:7987417249"> 7987417249 </a>
<p> Piyushi Patidar </p>
<a href="tel:8103215692"> 8103215692 </a>
<p> Sakshi Raghuwanshi </p>
<a href="tel:8103322902"> 8103322902 </a>
</div>
<div class="social common">
<h1> Social Media </h1>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
</div>
</div>
<footer>
<h1> Copyright © Chameli Devi Group of Institutions </h1>
</footer>
<script>
const body = document.querySelector("body");
const navbar = document.querySelector(".navbar");
const menuBtn = document.querySelector(".menu-btn");
const cancelBtn = document.querySelector(".cancel-btn");
menuBtn.onclick = ()=>{
navbar.classList.add("show");
menuBtn.classList.add("hide");
body.classList.add("disabled");
}
cancelBtn.onclick = ()=>{
body.classList.remove("disabled");
navbar.classList.remove("show");
menuBtn.classList.remove("hide");
}
</script>
</body>
</html>