-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
40 lines (36 loc) · 1.21 KB
/
contactus.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
<!doctype html>
<html>
<head>
<title>Mark Bonjoc</title>
<link href="css/mark.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="contactbody">
<div class="center">
<div class="lightgray">
<nav>
<a href="index.html">Home</a>
<a href="aboutus.html">AboutUs</a>
<a href="products.html">Products</a>
<a href="services.html">Services</a>
<a href="faqs.html">FAQs</a>
<a href="contactus.html">ContactUs</a></nav></br>
<form action="/action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>