-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (57 loc) · 2.61 KB
/
contact.html
File metadata and controls
66 lines (57 loc) · 2.61 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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact Alwyn Durham</title>
<script src="https://use.fontawesome.com/17d34a2d31.js"></script>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Karla" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="page-wrapper">
<header id="headerbar">
<div id="headerwrapper">
<div id="logo">
Alwyn Durham
</div>
<nav>
<a href="index.html" accesskey="a">About</a> |
<a href="portfolio.html" accesskey="p">Portfolio</a> |
<a href="contact.html" accesskey="c">Contact</a>
</nav>
</div>
</header>
<div id="wrapper">
<section id="main-content">
<h1>Contact</h1>
<hr>
<form id="contact-form" action="" method="get" name="contact-form">
<label for="name" class="required">Name</label><br>
<input id="name" type="text" name="name" placeholder="Jane Smith" autocomplete="name" required>
<br>
<label for="email" class="required">Email</label><br>
<input id="email" type="email" name="email" placeholder="jsmith@youremail.com" autocomplete="email" required>
<br>
<label for="message" class="required">Message</label><br>
<textarea id="message" rows="8" name="message" form="contact-form" maxlength="5000" placeholder="You're so awesome!" autocomplete="off" required></textarea>
<br>
<button type="submit" value="Submit"><i class="fa fa-hand-o-right" aria-hidden="true"></i> Submit</button>
<br>
<span class="required sub-text">Indicates required field</span>
</form>
</section>
<section id="social-media">
<h2 class="social-media">Connect with Me</h2>
<hr class="social-media">
<a href="https://stackoverflow.com/users/3010362/armandfrvr" target="_blank"><img class="sm-icon" src="assets/images/stackoverflow.png" alt="Stack Overflow"></a>
<a href="https://www.linkedin.com/in/alwyn-durham-3883a833" target="_blank"><img class="sm-icon" src="assets/images/linkedin_square_color-128.png" alt="Linkedin"></a>
<a href="https://github.com/ArmandFrvr" target="_blank"><img class="sm-icon" src="assets/images/github_square-128.png" alt="Github"></a>
</section>
</div>
</div>
<footer class="sub-text">
Copyright © 2017 Alwyn Durham
</footer>
</body>
</html>