-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
56 lines (37 loc) · 1.58 KB
/
Copy pathcontact.html
File metadata and controls
56 lines (37 loc) · 1.58 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="assets/css/style.css">
<title>Contact</title>
</head>
<body>
<div>
<div id="header">
<h1>Garth Smith</h1>
<ul id="menu">
<li><a href="index.html">About</li></a>
<li><a href="portfolio.html">Portfolio</li></a>
<li><a href="contact.html">Contact</li></a>
</ul>
</div>
<div id="main">
<h2>Contact</h2>
<form>
<input type="text" name="name" size="50" placeholder="Name:"><br><br>
<input type="text" name="email" size="50" placeholder="Email:"><br><br>
<textarea name="message" rows="7" placeholder="Comment:"></textarea><br><br>
<button>Submit</button>
</form>
</div>
<div id="icons">
<h3>Connect with Me</h3>
<a href="https://github.com/thargs"><img src="assets/images/github_square_black-128.png" alt="Github logo" width="60px" height="60px"></a>
<a href="https://www.linkedin.com/in/thargs"/><img src="assets/images/linkedin_square_color-128.png" alt="Linkedin logo" width="60px" height="60px"></a>
<a href="https://stackoverflow.com/users/9134400/garth"><img src="assets/images/overflow-128.png" alt="Stack Overflow logo" width="55px" height="55px"></a>
</div>
</div>
<div id="footer">
<p id="textfoot"> © Copyright 2018 Garth Smith</p>
</div>
</body>
</html>