forked from JettTech/FirstWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
63 lines (63 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Lisa Jetton: An Introduction</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container">
<header class="wrapper">
<h1 id="header-name"> Lisa Jetton </h1>
<nav id="navitems">
<ul>
<li><a href="index.html"> About </a></li>
<li><a href="portfolio.html"> Portfolio </a></li>
<li><a href="#"> Contact </a></li>
</ul>
</nav>
</header>
<div id="center-area">
<div id="main-section">
<article id="main-content">
<h2>Contact Me</h2>
<div id="articleline1"></div>
<form>
Name:
<br/>
<input type="text" name="name" placeholder=" John Smith">
<br/>
<br/>
Email:
<br/>
<input type="email" name="mail" placeholder=" example@gmail.com">
<br/>
<br/>
Subject:
<br/>
<textarea name="message" rows="20" cols="50" placeholder=" Please write your message here."></textarea>
<br/>
<br/>
<button href="#" type="button" ondblclick="Are you sure you would like to submit?">Submit</button>
</form>
</article>
</div>
<aside>
<div id="asidecontact">
<h3>Connect With Me</h3>
<div id="asideline2"></div>
<div id="socialimages">
<a href="https://github.com/JettTech" target="_blank"><img id="socialimage" src="assets/images/github.img" alt="This is a picture of the github logo." height="50" width="50"/></a>
<a href="https://www.linkedin.com/in/lisa-jetton-78026626/" target="_blank"><img id="socialimage" src="assets/images/linkedin.img" alt="This is a picture of the linkedin logo." height="50" width="50"></a>
<a href="https://stackoverflow.com/users/7795208/lisa-jetton" target="_blank"><img id="socialimage" src="assets/images/stackoverflow.img" alt="This is a picture of the stackoverflow logo." height="50" width="50"></li>
</div>
</div>
</aside>
</div>
<footer id="stickyfooter">
<p id="copyright">©Copyright 2017 Lisa Jetton</p>
</footer>
</div>
</body>
</html>