-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
64 lines (61 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mearat Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container">
<div class="frontnav"></div>
<div id="mearat">
<a id="home" href="index.html">Mearat Hou</a>
</div>
<div class="middlenav"></div>
<ul>
<li>
<a href="index.html">About</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
<div class="contact">
<h1>
<img align="left" width="40px" height="38px" src="assets/images/contacts.png" alt="Contact">Contact
</h1>
<hr>
</div>
<form>
Name:
<br>
<input type="text" name="Name" placeholder="John Smith">
<br>
<br> Email:
<br>
<input type="email" name="email" placeholder="[email protected]">
<br>
<br> Subject:
<br>
<select name="subject">
<option value="blank"></option>
<option value="generalinquiry">General Inquiry</option>
<option value="projectrequest">Project Request</option>
</select>
<br>
<br> Message:
<br>
<textarea class="messagearea" placeholder="Enter Your Message Here"></textarea>
<br>
<br>
<input type="submit" value="Submit">
</form>
<div id="footer">Copyright ©</div>
</div>
</body>
</html>