-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (63 loc) · 2.52 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - MyWebsite</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Include the header -->
<header>
<nav class="navbar">
<div class="logo">
<a href="index.html">Orphan Academy</a></li>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href ="admissions.html">Admissions</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="services.html">Services</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<main>
<section class="about">
<h1>About Us</h1>
<p>We are an estemeed Academy where you can achieve whatever you wish just need to pay "REGULARY ON TIME".</p>
<h2>Our Location</h2>
<p>You can find us at:</p>
<!-- Embed Google Map -->
<div class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3888.7538033951096!2d77.49606337489487!3d12.923538915930507!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bafad1d6f18a4b9%3A0xc6082c1a24eba0bf!2sRV%20University!5e0!3m2!1sen!2sin!4v1723613528100!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade">
width="100%"
height="450"
style="border:0;"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</section>
</main>
<!-- Include the footer -->
<footer>
<div class="footer-container">
<p>© 2024 Orphan Academy. All Rights Reserved.</p>
<ul class="social-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
</ul>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>