-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
144 lines (143 loc) · 5.17 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang='en' class='ie6'> <![endif]-->
<!--[if IE 7 ]> <html lang='en' class='ie7'> <![endif]-->
<!--[if IE 8 ]> <html lang='en' class='ie8'> <![endif]-->
<!--[if IE 9 ]> <html lang='en' class='ie9'> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang='en'> <!--<![endif]-->
<head>
<meta charset='UTF-8'>
<title>Deviantech, Inc.</title>
<link href='stylesheets/bootstrap.css' rel='stylesheet'>
<link href='stylesheets/deviantech.css' rel='stylesheet'>
<link href='images/favicon.png' rel='shortcut icon'>
<link href='images/apple-touch-icon.png' rel='apple-touch-icon'>
</head>
<body>
<div class='body-wrapper'>
<div class='topbar'>
<div class='container fixed'>
<h3>
<a class='logo' href='index.html'>
<img alt='Deviantech Logo (Text)' src='images/txt-logo-small.png'>
</a>
</h3>
<ul class='nav secondary-nav'>
<li>
<a href='index.html'>Home</a>
</li>
<li>
<a href='about.html'>About</a>
</li>
<li>
<a href='services.html'>Services</a>
</li>
<li class='active'>
<a href='contact.html'>Contact</a>
</li>
</ul>
</div>
</div>
<div id='main_content'>
<div class='container'>
<section id='begin-content'>
<div class='page-header title'>
<h1>
Contact
<span>Deviantech</span>
<small>We've got magical development elves standing by just for you!</small>
</h1>
</div>
<div class='row'>
<div class='columns span4'>
<h3>Deviantech Team</h3>
Deviantech consists of an internationally distributed team headquartered in Palo Alto, California.
</div>
<div class='columns span12'>
<div id="thanks" class="alert-message success" style="text-align: center; display: none;">
Thanks for your submission!
</div>
<form action="https://formspree.io/apps@deviantech.com" method="post">
<input name='spambot' type='hidden' value=''>
<input type="hidden" name="_next" value="http://deviantech.com/contact.html?submitted=true" />
<fieldset>
<legend>Contact Us</legend>
<div class='clearfix'>
<label for='email'>Your Name</label>
<div class='input'>
<input class='xxlarge' name='name' type='text'>
</div>
</div>
<div class='clearfix'>
<label for='email'>Email Address</label>
<div class='input'>
<input class='xxlarge' name='email' type='text'>
</div>
</div>
<div class='clearfix'>
<label for='email'>Message</label>
<div class='input'>
<textarea class='xxlarge' name='message'></textarea>
</div>
</div>
<div class='actions'>
<button class='btn primary' type='submit'>Send Message</button>
<button class='btn' type='reset'>Clear Form</button>
</div>
</fieldset>
</form>
</div>
</div>
</section>
</div>
</div>
<div class='push'></div>
</div>
<div id='footer'>
<div id='subfooter'></div>
<div class='container'>
<div class='row'>
<div class='columns span8'>
<div class='weblinks'>
<a class='iconlink' href='http://www.linkedin.com/company/2060939' target='_blank'>
<img alt='LinkedIn' src='images/icons/linkedin_grey.png'>
</a>
<a class='iconlink' href='http://github.com/deviantech' target='_blank'>
<img alt='GitHub' src='images/icons/github_grey.png'>
</a>
<a class='iconlink' href='http://twitter.com/#!/deviantech' target='_blank'>
<img alt='Twitter' src='images/icons/twitter_grey.png'>
</a>
</div>
</div>
<div class='columns span8'>
<div class='logoright'>
<div class='logo'>
<img alt='Deviantech Logo' src='images/footer-logo-mono.png'>
</div>
<div class='txt'>
<div class='main'>
Deviantech
</div>
<div class='sub'>
we make
<span>kick-ass</span>
web applications
</div>
</div>
</div>
</div>
</div>
</div>
<div class='clear'></div>
</div>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js' type='text/javascript'></script>
<script src='javascripts/application.js' type='text/javascript'></script>
<script type="text/javascript">
$(document).ready(function() {
if (document.location.search.match(/submitted/)) {
$('#thanks').show();
}
});
</script>
</body>
</html>