This repository was archived by the owner on May 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
121 lines (111 loc) · 5.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Joe Collicoat</title>
<link rel="stylesheet" href="resetmeyer.css">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<script src="jquery-3.1.0.min.js"></script>
<script src="jquery.slides.min.js"></script>
<script src="javascript.js"></script>
<script src="jquery.js"></script>
</head>
<body>
<div id="wrapper">
<div id="nav">
<a href="index.html"><svg xmlns="http://www.w3.org/2000/svg" class="flex-item" id="logo" viewBox="0 0 103.31 104.49">
<path clip-path="url(#logo-clip)" id="logo-anim" d="M47.38,6.5H96.81v27S95.19,58.46,72.1,59.85s-17.09-15-38.57-15-27.25,19.4-27,27.71S13.68,97,30.76,98,58,83.41,58,83.41"/>
<defs>
<clipPath id="logo-clip">
<path id="logo-mask" d="M100,2.22H51V11.7H92.49V33.29a21.31,21.31,0,0,1-6.41,15.27,22.07,22.07,0,0,1-30.93,0l-1.62-1.39a31.83,31.83,0,0,0-42.23,2,30.81,30.81,0,0,0,0,43.94,31.81,31.81,0,0,0,44.52,0l1.51-1.49-1.51-1.49-3.77-3.72-1.51-1.49L49,86.43a22.11,22.11,0,0,1-30.94,0,21.42,21.42,0,0,1,0-30.53A22.11,22.11,0,0,1,49,55.9l1.61,1.39a31.75,31.75,0,0,0,42.23-2,30.66,30.66,0,0,0,9.22-22V2.23Z"/>
</clipPath>
</defs>
</svg></a>
<div class="navset" id="work">
<h1>Design</h1>
</div>
<ul class="navsubset" id="workset">
<li>
<h2><a href="w_runningwgtn.html">Running WGTN</a></h2></li>
<li>
<h2><a href="w_callofthewild.html">The Call of the Wild</a></h2></li>
<li>
<h2><a href="w_spotify.html">Spotify Redesign</a></h2></li>
<li>
<h2><a href="w_produse.html">Produse App</a></h2></li>
<li>
<h2><a href="w_alumni.html">Chico State Alumni</a></h2></li>
<li>
<h2><a href="w_sweetnz.html">Sweet New Zealand</a></h2></li>
<li>
<h2><a href="w_quasar.html">Quasar Poster</a></h2></li>
</ul>
<div class="navset" id="photo">
<h1>Photography</h1>
</div>
<ul class="navsubset" id="photoset">
<li>
<h2><a href="p_makara.html">Makara</a></h2></li>
<li>
<h2><a href="p_nightcall.html">Nightcall</a></h2></li>
</ul>
<div class="navset" id="about">
<a href="about.html"><h1>About Me</h1></a>
</div>
<div class="navset" id="contact">
<a href="contact.html"><h1>Contact</h1></a>
</div>
<div class="navset" id="behance">
<a href="https://www.behance.net/joecollicoat" target="_blank"><h1>Behance</h1></a>
</div>
<div class="navset" id="instagram">
<a href="https://www.instagram.com/joecollicoat/" target="_blank"><h1>Instagram</h1></a>
</div>
</div>
<div id="content">
<p style="margin-bottom:30px;">Get in contact with me at these addresses!</p>
<span2>< email ></span2>
<span> [email protected]</span>
<br>
<span2>< phone ></span2>
<span> +64 27 554 2255</span>
<br>
<p style="margin-top:30px;">Or if you'd like, fill out the contact form below!
<br> I'd love to hear from you!</p>
<br>
<form name="contactform" method="post" action="contact_form_send.php">
<table>
<tr>
<td valign="top">
<input class="formname" type="text" name="firstname" placeholder="< first name >">
<input class="formname" type="text" name="lastname" placeholder="< last name >">
</td>
</tr>
<tr>
<td valign="top">
<input type="text" name="email" placeholder="< email >">
</td>
</tr>
<tr>
<td valign="top">
<input type="text" name="phone" placeholder="< phone >">
</td>
</tr>
<tr>
<td valign="top">
<textarea name="message" rows="10" placeholder="< message >"></textarea>
</td>
</tr>
<tr>
<td valign="top">
<input type="submit" name="submit" value="Submit">
</td>
</tr>
</table>
</form>
</div>
</div>
</body>
</html>