-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
45 lines (42 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - IIT BHU Robotics Club</title>
<link rel="stylesheet" href="../styles/styles.css">
</head>
<body>
<header>
<img src="../images/logo.jpeg" alt="Robotics Club Logo" class="logo">
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="camp.html">Camp</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="contact">
<h2>Contact Us</h2>
<div class="contact-person">
<h3>XYZ</h3>
<p>Contact Number: +91 9876543210</p>
</div>
<div class="contact-person">
<h3>ABC</h3>
<p>Contact Number: +91 8765432109</p>
</div>
<div class="contact-person">
<h3>PQR</h3>
<p>Contact Number: +91 7654321098</p>
</div>
</section>
<footer>
<p>© 2024 IIT BHU Robotics Club</p>
</footer>
</body>
</html>