-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
129 lines (117 loc) · 5.05 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
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Galen Cook | Contact</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/custom.css">
<!--Google Fonts -->
<link href="http://fonts.googleapis.com/css?family=Oswald|Open+Sans+Condensed:300" rel="stylesheet" type="text/css">
<!--Favicon -->
<!-- for FF, Chrome, Opera -->
<link rel="icon" type="image/png" href="imgs/favicon-16.png" sizes="16x16">
<link rel="icon" type="image/png" href="imgs/favicon-32.png" sizes="32x32">
<!-- for IE -->
<link rel="icon" type="image/x-icon" href="imgs/favicon.ico" >
<link rel="shortcut icon" type="image/x-icon" href="imgs/favicon.ico"/>
<!-- 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>
<header>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">GALEN COOK</a>
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="about.html">ABOUT ME</a></li>
<li><a href="blog/index.html">BLOG</a></li>
<li><a href="projects/index.html">PROJECTS</a></li>
<li><a href="resume.html">RESUME</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</div>
</nav>
</header>
<section>
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2 matting">
<h1>Want to get in touch?</h1>
<div id="contacts">
<div class="row">
<!-- Alignment -->
<div class="col-sm-offset-3 col-sm-6">
<!-- Form itself -->
<form name="sentMessage" class="well" id="contactForm" novalidate>
<legend>Shoot me an email.</legend>
<div class="control-group">
<div class="controls">
<input type="text" class="form-control"
placeholder="Full Name" id="name" required
data-validation-required-message="Please enter your name" />
<p class="help-block"></p>
</div>
</div>
<div class="control-group">
<div class="controls">
<input type="email" class="form-control" placeholder="Email"
id="email" required
data-validation-required-message="Please enter your email" />
</div>
</div>
<div class="control-group">
<div class="controls">
<textarea rows="10" cols="100" class="form-control"
placeholder="Message" id="message" required
data-validation-required-message="Please enter your message" minlength="5"
data-validation-minlength-message="Min 5 characters"
maxlength="999" style="resize:none"></textarea>
</div>
</div>
<div id="success"> </div> <!-- For success/fail messages -->
<button type="submit" class="btn btn-primary pull-right">Send</button><br />
</form>
</div>
</div>
</div>
<h3 class="text-center">Or find me on any of the social media links below.</h3>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-md-10 col-md-offset-1 text-center">
<ul>
<li><a href="https://github.com/galenscook"><img src="imgs/github.png" alt="GitHub" /></a></li>
<li><a href="https://twitter.com/galencook"><img src="imgs/twitter.png" alt="Twitter" /></a></li>
<li><a href="https://linkedin.com/in/galencook"><img src="imgs/linkedin.png" alt="LinkedIn" /></a></li>
<li><a href="https://plus.google.com/+GalenCook"><img src="imgs/googleplus.png" alt="Google+" /></a></li>
<li><a href="https://facebook.com/galenscook"><img src="imgs/facebook.png" alt="Facebook" /></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
</body>
</html>