-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
64 lines (49 loc) · 1.24 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-us">
<head>
<title>Contact- Portfolio</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css" >
</head>
<!--Site content here here here here -->
<body>
<!--Navigation bar here here here-->
<div class="navbar clearfix">
<ul>
<li style="float:left"><a id="name">Karishma Patel</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="index.html">About</a></li>
</ul>
</div>
<br>
<br>
<br>
<br>
<br>
<!--Main body content here here -->
<div class="main">
<h1>Contact</h1>
<br>
<p>Name</p>
<form name="name">
<input type="text" placeholder="First Last">
</form>
<br>
<p>Email</p>
<form name="name">
<input type="text" placeholder="[email protected]">
</form>
<br>
<p>Message</p>
<textarea rows="4" cols="50" style="margin: 5 5 5 0px; width: 920px; height: 100px;"></textarea>
<br>
<br>
<p class="button">Submit</p>
</div>
<!--footer here here here -->
<div class="footer">
Copyright ©
</div>
</body>
</html>