-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
52 lines (52 loc) · 1.32 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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Group 5 website</title>
<link rel="stylesheet" type="text/css" href="contact.css">
</head>
<body>
<nav class="nav">
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="courseunits.html">Course Units</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</nav>
<section>
<div class="heading">
<h1>Contact Us</h1>
</div>
<div class="contactform">
<form class="contactform">
<div class="formcontent">
<label>First Name</label>
<input type="text" placeholder="Your name..">
</div>
<div class="formcontent">
<label>Last Name</label>
<input type="text" placeholder="Your last name..">
</div>
<div class="formcontent">
<label>Gender</label>
<select id="gender" name="gender" placeholder="Gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</div>
<div class="formcontent">
<label>Message</label>
<input class="message" type="text" placeholder="Type your message here...">
</div>
<button>Send Message</button>
</form>
</div>
</section>
<br/>
<br/>
<br/>
<div class="footer">
<p class="foot">© 2019 WEB SYSTEMS Group 3</p>
</div>
</body>
</html>