-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCBSE 2.html
56 lines (44 loc) · 2.41 KB
/
CBSE 2.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>VP's English Medium School CBSE NO.2</title>
<link rel="stylesheet" href="CBSE 1.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> VP's English Medium School CBSE (NO.2) </h1>
<p>Vidya Pratishtan's English Medium School CBSE takes pride in the holistic and innovative learning methods which <br>have helped them raise the bar in the field of education. The centre follows a well-researched curriculum that <br>is based on the play way method of learning. This school offers education for children in different age groups. </p>
<p> click on "Directions" to get your destination </p>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d1243.7387858587704!2d74.6132105401575!3d18.17955764222393!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc375a3b1df2ac7%3A0x1807f8b67852517a!2sVidya%20Pratishthan's%20CBSE%20school!5e0!3m2!1sen!2sin!4v1652029594651!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>