-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (77 loc) · 3.01 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
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<img src="./pics/logo.jpg" alt="Logo">
</div>
<h1> Nava Bharat Public School</h1>
</header>
<h1 class="different"></h1>
<nav class="nav">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="academics.html">Academics</a></li>
<li><a class="contact-button" href="contact.html">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h2>
Welcome to Our School!
</h2>
<p>Providing Quality Education since 1990</p>
<div class="slide">
<img src="./pics/school1.jpeg" alt="Image 1">
</div>
<div class="slide">
<img src="./pics/school2.jpeg" alt="Image 2">
</div>
<div class="slide fade">
<img src="./pics/schside.jpg" alt="Image 3">
</div>
<div class="slide fade">
<img src="./pics/schpakkana.jpg" alt="Image 4">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</section>
<div class="map">
<iframe id="iframe"src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d61207.8055303205!2d80.5607452!3d16.501451!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a35f004eaaaaaab%3A0x7eb8536eacaf483f!2sNava%20Bharath%20Public%20School!5e0!3m2!1sen!2sin!4v1700121089924!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<h3>Tel:08662522214</h3>
<a id="fb" href="https://m.facebook.com/NavabharatPublicSchool">Facebook</a>
</div>
<footer id="footer">
<p>© 2023 NBPSchool Name. All rights reserved.</p>
</footer>
<script src="./script.js"></script>
</body>
</html>
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Slideshow</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="slideshow-container">
<div class="slide fade">
<img src="WhatsApp Image 2023-11-02 at 7.43.52 PM.jpeg" alt="Image 1">
</div>
<div class="slide fade">
<img src="WhatsApp Image 2023-11-02 at 7.43.52 PM (1).jpeg" alt="Image 2">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<script src="script.js"></script>
</body>
</html> -->