-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
87 lines (84 loc) · 3.52 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
<!DOCTYPE html>
<html>
<head>
<title>Eric J. Gift - Home</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="app.js"></script>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="style.css"/>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 480px), only screen and (max-device-width: 480px)" href="/mobile.css" />
<meta name="description" content="Eric. J. Gift Personal Website">
<meta name="keywords" content="Eric, J, Gift, photography, development, videography, portfolio">
<meta name="author" content="Eric Gift">
</head>
<body>
<div class="leftnav">
<img id="dets" src="/images/details.png" alt="menu" />
<div id="navmenu">
<img id="close" src="/images/close-button.png" alt="close" />
<a href="/index.html" class="fixednav" id="homenav">Home</a>
<a href="/videography.html" class="fixednav">Videography</a>
<a href="/development.html" class="fixednav">Development</a>
<a href="/photography.html" class="fixednav">Photography</a>
<a id="current" href="/contact.html" class="fixednav">Contact</a>
</div>
</div>
<div class="title">
<h1>
Contact Me
</h1>
<p>
Interested in working with me? Have a general question? Fill out the form below!
</p>
</div>
<div class="form">
<form class="contactform">
<input type="radio" name="kind" value="inquiry" id="inquiry" checked="checked">Inquiry
<input type="radio" name="kind" value="proposal" id="proposal">Proposal
<br> <br>
<div class="inquiry">
<input type="text" name="firstname" placeholder="First Name"><br>
<input type="text" name="lastname" placeholder="Last Name"><br>
<input type="text" name="email" placeholder="Email"><br>
<textarea id="question" name="question" placeholder="Your Question"></textarea> <br>
<input class="submit" type="submit" value="Submit">
</div>
<div class="proposal">
<div class="services">
<p>
Services<br>Requested
</p>
</div>
<div class="services" id="approx">
<p>
Approximate<br>Timeline
</p>
</div>
<input type="text" name="firstname" placeholder="First Name"><br>
<input type="text" name="lastname" placeholder="Last Name"><br>
<input type="text" name="email" placeholder="Email"><br> <br>
<div class="types">
<input type="checkbox" name="webdesign">Web Design <br>
<input type="checkbox" name="webdev">Web Development <br>
<input type="checkbox" name="photo">Photography <br>
<input type="checkbox" name="video">Videography <br>
</div>
<br></br>
<textarea id="question" name="question" placeholder="Tell me about the project"></textarea> <br> <br>
<div class="dates">
Start Date: <input type="date" name="start"> <br>
End Date: <input type="date" name="end"> <br> <br>
</div>
<input class="submit" type="submit" value="Submit">
</div>
</form>
</div>
<div class="footer">
<h3>
© Eric Gift, 2016
</h3>
</div>
</body>
</html>