-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
37 lines (37 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BSE Website</title>
<link rel="stylesheet" href="style2.css"/>
</head>
<body>
<header>
<div class="navbar">
<div class="logo img">
<img src="images/logo2.png" alt="BSE logo">
</div>
<ul class="links">
<li><a href="index.html"> HOME </a></li>
<li><a href="pvdx.html"> PVDX </a></li>
<li><a href="equisat.html"> EQUISAT </a></li>
<li><a href="about.html"> ABOUT BSE </a></li>
<li><a href="subgroup.html"> SUBGROUPS </a></li>
<li><a href="project.html"> PROJECTS </a></li>
<li><a href="contact.html"> CONTACT </a></li> <!-- Updated link text -->
</ul>
</div>
</header>
<main>
<div class="contact-container">
<h2>Contact Us</h2>
<p>Feel free to reach out to us via the following channels:</p>
<ul>
<li></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Instagram: <a href="https://www.instagram.com/brownu_space/" target="_blank">@brownu_space</a></li>
</ul>
</div>
</main>
</body>
</html>