-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
138 lines (123 loc) · 5.53 KB
/
contact.html
File metadata and controls
138 lines (123 loc) · 5.53 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE HTML>
<!--
Twenty by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Contact - Adrian Wan</title>
<meta charset="utf-8" />
<meta name="description" content="Adrian Wan's contact form." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!-- Google analytics script -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-69121908-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="contact">
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1 id="logo"><a href="index.html">Adrian <span>Wan</span></a></h1>
<nav id="nav">
<ul>
<li class="current"><a href="index.html">Welcome</a></li>
<li class="submenu">
<a href="#">More</a>
<ul>
<li><a href="resume.html">Resumé</a></li>
<li class="submenu">
<a href="#">Posts</a>
<ul>
<li><a href="posts.html">Top</a></li>
<li><a href="vim-tricks.html">Vim Tricks</a></li>
<li><a href="success-in-swat-cs.html">Success in Swat CS</a></li>
<li><a href="subl-floo-tutorial.html">Floobits & Sublime</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="contact.html" class="button special">Contact Me</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<article id="main">
<header class="special container">
<span class="icon fa-envelope"></span>
<h2>Get In Touch</h2>
<!-- <p>Use the form below to give /dev/null a piece of your mind.</p> -->
</header>
<!-- One -->
<section class="wrapper style4 special container 75%">
<!-- Content -->
<div class="content">
<form action="http://formspree.io/adrianwan2@gmail.com" method="POST">
<!-- Spam honeypot -->
<input type="text" name="_gotcha" style="display:none" />
<div class="row 50%">
<div class="6u 12u(mobile)">
<input type="text" name="name" placeholder="Name" />
</div>
<div class="6u 12u(mobile)">
<input type="text" name="email" placeholder="Email" />
</div>
</div>
<div class="row 50%">
<div class="12u">
<input type="text" name="subject" placeholder="Subject" />
</div>
</div>
<div class="row 50%">
<div class="12u">
<textarea name="message" placeholder="Message" rows="7"></textarea>
</div>
</div>
<div class="row">
<div class="12u">
<ul class="buttons">
<li><input type="submit" class="special" value="Send Message" /></li>
</ul>
</div>
</div>
</form>
</div>
</section>
</article>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<!-- <li><a href="#" class="icon circle fa-twitter"><span class="label">Twitter</span></a></li> -->
<!-- <li><a href="#" class="icon circle fa-facebook"><span class="label">Facebook</span></a></li> -->
<li><a href="http://www.linkedin.com/in/adrianwan2" class="icon circle fa-linkedin"><span class="label">LinkedIn</span></a></li>
<!-- <li><a href="#" class="icon circle fa-google-plus"><span class="label">Google+</span></a></li> -->
<li><a href="http://www.github.com/awan1" class="icon circle fa-github"><span class="label">Github</span></a></li>
<li><a href="http://stackoverflow.com/users/2452770/a-wan" class="icon circle fa-stack-overflow"><span class="label">StackOverflow</span></a></li>
<li><a href="https://soundcloud.com/adrian-wan" class="icon circle fa-soundcloud"><span class="label">Soundcloud</span></a></li>
</ul>
<ul class="copyright">
<li>© Adrian Wan 2015--2018</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollgress.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>