-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
41 lines (40 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact | HackBlue</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<header>
<nav style="height:70px">
<a href="index.html"><img src="img/hb-logo-white.png" alt="HackBlue Logo" style="width:auto; height:70px; position:absolute;"></a>
<ul style="height:70px;">
<li><a href="index.html">Home</a></li>
<li><a href="what-we-do.html">What We Do</a></li>
<li><a href="team.html">Our Team</a></li>
<li><a href="sponsorships.html">Sponsorships</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a style="color:white;" href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="see-through-box" align="center">
<h1 class="header-content">Contact</h1>
<!-- email, name, message form-->
<h3 class="alternate-header">Full Name</h3>
<input type="name">
<h3 class="alternate-header">Email</h3>
<input type="email">
<h3 class="alternate-header">Message<h3>
<textarea>type your message</textarea>
<br></br>
<input type="submit" value="Submit">
</div>
<footer>
<p style="text-align: center">Copyright ©2022 HackBlue. All Rights Reserved | Created by <a style="font-size: 16px;" href="team.html#team">Web Development Committee</a></p>
</footer>
</body>
</html>