-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDr.CyrusSchool.html
57 lines (44 loc) · 2.38 KB
/
Dr.CyrusSchool.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>Dr. Cyrus Poonawala CBSE School</title>
<link rel="stylesheet" href="New English School.css">
<script src="https://kit.fontawesome.com/ec84f8035f.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
</head>
<body>
<section class="header">
<nav>
<a href="Home.html"><img src="images/VPKBIET-removebg-preview.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="Home.html">HOME</a></li>
<li><a href="" title="SE Project : AI & DS(2020)">ABOUT</a></li>
<li><a href="" title="For any queries or suggestions, mail us at : [email protected]">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="container">
<h1> Dr. Cyrus Poonawala CBSE School </h1>
<p>Vidya Pratishthans Dr Cyrus Poonawalla School is a Co-ed school affiliated to Central Board of Secondary <br>Education (CBSE). The school was established in 2016. Vidya Pratishthans Dr Cyrus Poonawalla School is <br>a Co-ed school affiliated to Central Board of Secondary Education (CBSE). </p>
<p> click on "Directions" to get your destination </p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3790.7204634181494!2d74.61400957894492!3d18.176786708542117!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc39fe07a4ad6ff%3A0x3993de7065e7353a!2sVP's%20Dr.%20Poonawalla%20School%20CBSE!5e0!3m2!1sen!2sin!4v1652032090724!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</section>
<!--Javascript for toggle Menu-->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right ="0";
}
function hideMenu(){
navLinks.style.right ="-200px";
}
</script>
</body>
</html>