-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
53 lines (42 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<title>Priya's Site</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<div class= "Priya">
<h1> Priya Shah </h1>
</div>
<div class="topnav">
<a href="https://priyadoit.github.io/Basic-Portfolio/index.html">About</a>
<a href="https://priyadoit.github.io/Basic-Portfolio/portfolio.html">Portfolio</a>
<a href="https://priyadoit.github.io/Basic-Portfolio/contact.html">Contact</a>
</div>
</header>
<div class = "wrapper">
<form name="contact" method="post">
<label>Name</label>
<input type="text" name="name" />
<label>E-mail</label>
<input type="text" name="email" />
<label>Message</label>
<textarea name="message"></textarea>
<input type="submit" name="send" value="Send" />
</form>
</div>
</div>
<div class="Connect">
<h2> Connect With Me</h2>
<div id ="social">
<a href = "https://github.com/PriyaDoIT/" target = _"blank"><img src = "assets/images/github.png"></a>
<a href = "https://www.linkedin.com/in/priya-shah-192972108/" target = _"blank"> <img src = "assets/images/linkedin.png"></a>
<a href = "mailto: [email protected]" target = _"blank"><img src = "assets/images/email.png"> </a>
</div>
</div>
<div class="footer">
<p> © Copyright 2017 Priya Shah</p>
</div>
</body>
</html>