-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
40 lines (33 loc) · 1.05 KB
/
contact.html
File metadata and controls
40 lines (33 loc) · 1.05 KB
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
<!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="style.css">
</head>
<Body>
<header>
<nav>
<a link rel="html" href="index.html">Home</a>
<a link rel="html" href="Event_Gallery.html">Event Gallery</a>
<a link rel="html" href="contact.html">Contact</a>
</nav>
</header>
<section id="about">
<h1>Contact Us!</h1>
<p>Want to find out more infomation? Please leave your info below</p>
</section>
<!-- Contact form section -->
<section id="contact">
<h2>Your Info:</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Send</button>
</form>
</section>
</Body>
</html>