-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
74 lines (61 loc) · 2.76 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
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<head>
<link href="./normalize.css" rel="stylesheet">
<link href="./main.css" rel='stylesheet'>
<link href='bootstrap-3.1.1-dist/css/bootstrap.css' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome!</title>
</head>
<style>
.btn{
margin: 20px;
width: 15%;
}
#details{
margin-top: 30px;
}
</style>
<body>
<header>
<div class="container">
<img id="profile" src="./Photos/IMG-20130213-WA0008.jpg" width="" height="300">
<h1><a href="./index.html" style="text-decoration:none">Jun Wan</a></h1>
<ul>
<li><a href="./about_me.html">About Me</a></li>
<li><a href="./interest.html">Interest</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</div>
</header>
<div class="text-center">
<article>
<h2>Contact</h2>
<a href="https://www.facebook.com/junwan.goh" target="_blank" class="btn btn-primary">Facebook</a>
<a href="https://twitter.com/JunWanGoh" target="_blank" class="btn btn-info">Twitter</a>
<a href="https://www.linkedin.com/pub/jun-wan-goh/a3/3a1/4a3" target="_blank" class="btn btn-primary">LinkedIn</a>
<p id="details">Enter your details and I will get in touch with you shortly! :)</p>
<script type="text/javascript">var submitted=false;</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted) {window.location='./thanks.html';}"></iframe>
<form action="https://docs.google.com/forms/d/1EkPopnQjzW811MW2ZoAmWGzm-OqGKaqimCeDTAX9Eec/formResponse" method="POST" target="hidden_iframe" onsubmit="submitted=true;">
<p>
<label>Name</label>
<input type="text" name="entry.1662899193" value="" class="ss-q-short" id="entry_1662899193" dir="auto" aria-label="Name " aria-required="true" required="" title="">
</p>
<p>
<label>Email Address</label>
<input type="text" name="entry.2105425268" value="" class="ss-q-short" id="entry_2105425268" dir="auto" aria-label="Email Address Please input a valid email address." aria-required="true" required="" pattern=".*@.*" title="Please input a valid email address.">
<input type="submit" name="submit" value="Submit" id="ss-submit">
</p>
</form>
</article>
</div>
</body>
<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-48888881-1', 'jwgoh.tk');
ga('send', 'pageview');
</script>
</html>