-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
61 lines (56 loc) · 2.54 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Empowering the Nation</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="pixel.ico" type="image/x-icon">
</head>
<body>
<header>
<nav>
<ul>
<!--<img src="emp.png" alt="Empowering the Nation" width='10%' height='15%'>-->
<li><a href="home.html">Home</a></li>
<li><a href="about us.html">About Us</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="index.html">Log Out</a></li>
</ul>
</nav>
</header>
<section id="contact">
<h2>Contact Us</h2>
<form action="submit_form.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
<!-- Embedded Google Map -->
<!-- Embedded Google Map -->
<h3>Visit Us:</h3>
<div style="width: 100%; height: 400px;">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3582.4301532420433!2d28.072758075232377!3d-26.129208240810436!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e950b8f87f7cc7f%3A0xdf4a44572d3c4958!2sSasani%20Studios!5e0!3m2!1sen!2sza!4v1693904091679!5m2!1sen!2sza"
width="100%" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0">
</iframe>
</div>
</section>
<footer>
<p>Contact Information: <a href="mailto:[email protected]">[email protected]</a> | 123-456-7890</p>
<p>Follow us:
<a href="https://www.facebook.com/login/">Facebook</a> |
<a href="https://x.com/i/flow/login">Twitter</a> |
<a href="https://www.instagram.com/accounts/login/?hl=en">Instagram</a>
</p>
<p><a href="privacy.html">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
<p>© GOV 2024. All rights reserved.</p>
</footer>
</body>
</html>