-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
47 lines (39 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="styles.css"> <!-- Add a link to your CSS file if needed -->
</head>
<body>
<header>
<h1>Contact Us</h1>
</header>
<section>
<h2>Contact Information</h2>
<p>Email: example@email.com</p>
<p>Phone: +91 1234567890</p>
<p>Address: BML Munjal University, Gurugram, India</p>
</section>
<section>
<h2>Any Issues? </h2>
<form action="index1.html" method="post"> <!-- Specify the action and method for your contact form -->
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="3" cols="82" required></textarea><br><br>
<button type="submit">Submit</button>
</form>
<div id="submissionMessage" style="display: none;">
Issue submitted!
</div>
</section>
<!-- Add more content as needed -->
<footer >
© e-स्वच्छता
</footer>
</body>
</html>