-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
76 lines (66 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nasarow-Fo-To</title>
<!-- Bootstrap -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="opaque-back">
<header>
<h2>Nasarow-Fo-To</h2>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</nav>
</header>
<div class="container center-block">
<div class="container center-block con-form">
<h3>Contact Me</h3>
<p>Do you want to contact me about collaberation? Are you interested in buying a print? Please fill the form out below and I'll respond as quickly as I can.</p>
</div>
</div>
<form action="contact.html" method="post">
<fieldset>
<legend><span class="number">1</span>Your info</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name">
<label for="email">Email:</label>
<input type="email" id="email" name="user_email">
</fieldset>
<fieldset>
<legend><span class="number">2</span>Question or Comments</legend>
<label>What is this related to?</label>
<input type="radio" id="gen-com" value="gen-com" name="user_related"><label for="gen-com" class="light">General Comments</label>
<br>
<input type="radio" id="purchase" value="purchase" name="user_related"><label for="purchase" class="light">Purchasing</label>
<br>
<input type="radio" id="collab" value="collab" name="user_related"><label for="collab" class="light">Collaberation</label>
<br>
<input type="radio" id="other" value="other" name="user_related"><label for="other" class="light">Other</label>
<br>
<textarea id="question-field" name="user_question" rows="10"></textarea>
<input type="button" id="submit" value="submit" name="user_submit">
</fieldset>
</form>
<footer class="footer">
<h7>© 2015 Nathaniel Nasarow.</h7>
</footer>
</div>
</body>
</html>