-
Notifications
You must be signed in to change notification settings - Fork 16
/
contact.html
45 lines (42 loc) · 1.46 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
<!-- FILEPATH: /Users/prateek/WebDev/Hacktoberfest-23/contact.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Us</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<a href="#">
<img src="./assets/img/Birla_Institute_of_Technology_Mesra.png" alt="BIT Mesra" id="logo" />
<h2>CollegeHUB</h2>
</a>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact Us</a>
</nav>
</header>
<main class="contact" >
<h1>Contact Us</h1>
<form action="#" method="post">
<div class="contact-card" >
<div class="basic-input" >
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="basic-input" >
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="message-input" >
<label for="message">Message:</label>
<textarea id="message" name="message" required ></textarea>
</div>
<button class="submit-button" type="submit">Send</button>
</div>
</form>
</main>
</body>
</html>