-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
65 lines (65 loc) · 2.83 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
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Contact elwebman </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
</head>
<body>
<div id="container">
<nav>
<h1><a href="http://nycda.zone/elwebman107/">elwebman.nl</a></h1>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
<header>
<ul>
<li><a href="https://www.facebook.com/elwebman?fref=ts" target="_blank"><i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i></a> </li>
<li><a href="http://alexelwebman.tumblr.com" target="_blank"><i class="fa fa-tumblr-square fa-2x" aria-hidden="true"></i></a></li>
<li><a href="https://nl.linkedin.com/in/elwebman" target="_blank"><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"></i></a> </li>
<li><a href="https://www.youtube.com/user/alexolivet" target="_blank"><i class="fa fa-youtube-play fa-2x" aria-hidden="true"></i></a> </li>
<li><a href="https://github.com/elwebman" target="_blank"><i class="fa fa-github fa-2x" aria-hidden="true"></i></a> </li>
</ul>
</header>
<article id="contact">
<img class="img-circle" src="images/hi.jpg" alt="elwebman contact page">
<h1>Let's get in touch!</h1>
<hr class="style-eight">
<form method="post">
<div>
<label for="name">Your name*
</label>
<input type="text" id="name" name="name"/>
</div>
<div>
<label for="email">Your e-mail*
</label>
<input type="email" id="email" name="email"/>
</div>
<div >
<label for="message">Your message
</label>
<textarea id="message" name="message">
</textarea>
</div>
<input type="submit" value="Send your message!"/>
</form>
</article>
<footer>
<h2>elwebman</h2>
<h3>innovative, inventive, from amsterdam</h3>
<ul>
<li><a href="https://www.facebook.com/elwebman?fref=ts" target="_blank"><i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i></a> </li>
<li><a href="http://alexelwebman.tumblr.com" target="_blank"><i class="fa fa-tumblr-square fa-2x" aria-hidden="true"></i></a></li>
<li><a href="https://nl.linkedin.com/in/elwebman" target="_blank"><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"></i></a> </li>
<li><a href="https://www.youtube.com/user/alexolivet" target="_blank"><i class="fa fa-youtube-play fa-2x" aria-hidden="true"></i></a> </li>
<li><a href="https://github.com/elwebman" target="_blank"><i class="fa fa-github fa-2x" aria-hidden="true"></i></a> </li>
</ul>
</footer>
</div>
</body>
</html>