-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (42 loc) · 1.53 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact - Summiyah Portfolio</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div id="header">
<div class="content-area">
<div id="summiyah">Summiyah</div>
<nav>
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a>
</nav>
</div>
</div>
<div id="container">
<div class="content-area">
<div id="section">
<h1>Contact</h1>
<hr>
<p>Name:<br><input type="text" value="John Smith"></p>
<p>Email:<br><input type="text" value="[email protected]"></p>
<p>Message:<br><textarea></textarea></p>
<button>Submit</button>
</div>
<div id="aside"><h2>Connect With Me</h2>
<hr>
<a href="www.linkedin.com/in/summiyah"><img src="assets/images/linkedin_circle_color-512.png"/></a>
<a href="www.linkedin.com/in/summiyah"><img src="assets/images/so-icon.png"/></a>
<a href="www.github.com/summiyah"><img src="assets/images/github-512.png"/></a>
</div>
</div>
<div id="footer">© Copyright 2017 Summiyah Siddeeq</div>
</body>
</html>