-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
132 lines (118 loc) · 5.99 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Variant HTML Builder by Medium Rare</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all">
<link href="css/themify-icons.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Lato:300,400%7CRaleway:100,400,300,500,600,700%7COpen+Sans:400,500,600' rel='stylesheet' type='text/css'>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:100,300,400,600,700" rel="stylesheet" type="text/css">
<link href="css/font-opensans.css" rel="stylesheet" type="text/css">
</head>
<body class="btn-rounded scroll-assist">
<div class="nav-container">
<nav>
<div class="nav-bar text-center">
<div class="col-md-2 col-md-push-5 col-sm-12 text-center">
<a href="index.html">
<img alt="logo" class="image-xxs" src="img/logo01.png">
</a>
</div>
<div class="col-sm-12 col-md-5 col-md-pull-2 overflow-hidden-xs">
<ul class="menu inline-block pull-right">
<li><a href="about.html">About </a></li>
<li><a href="#">games</a>
<ul>
<li><a href="dungeon-runner.html">Dungeon Runner</a></li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-12 col-md-5 pb-xs-24">
<ul class="menu">
<li><a href="contact.html">contact us </a></li>
<li><a href="#">links</a>
<ul>
<li><a href="#">Single</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="module widget-handle mobile-toggle right visible-sm visible-xs absolute-xs">
<i class="ti-menu"></i>
</div>
</nav>
<div class="main-container">
<section>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-5">
<h4 class="uppercase">Get In Touch</h4>
<p>
Want to make a game? Interested in working with your tech community? We're always looking for more creative people to work on the next Project Playground Game. Thanks for your interest!</p>
<hr>
<p>320 E Prentiss St<br>Iowa City, IA 52240<br></p>
<hr>
<p>
<strong>E:</strong> [email protected]
<br>
</p>
</div>
<div class="col-sm-6 col-md-5 col-md-offset-1">
<form class="form-email" data-success="Thanks for contacting us! We'll be in touch soon! :)" data-error="Whoops! Please fill all fields correctly.">
<input type="text" class="validate-required" name="name" placeholder="Your Name">
<input type="text" class="validate-required validate-email" name="email" placeholder="Email Address">
<textarea class="validate-required" name="message" rows="4" placeholder="Message"></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<section class="bg-dark pt64 pb64">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h2 class="mb8">Build Games with Your Tech Community</h2>
<p class="lead mb40 mb-xs-24">
And get kids coding!</p>
<a class="btn btn-filled btn-lg mb0" href="#purchase-template">Contact us</a>
</div>
</div>
</div>
</section>
<footer class="footer-2 bg-dark text-center-xs">
<div class="container">
<div class="row">
<div class="col-sm-4">
<a href="#"><img class="image-xs fade-half" alt="Pic" src="img/full-logo.png"></a>
</div>
<div class="col-sm-4 text-center">
<span class="fade-half">
© Copyright 2016 Project Playground - All Rights Reserved
</span>
</div>
<div class="col-sm-4 text-right text-center-xs">
<ul class="list-inline social-list">
<li><a href="#"><i class="ti-twitter-alt"></i></a></li>
<li><a href="#"><i class="ti-facebook"></i></a></li>
<li><a href="#"><i class="ti-dribbble"></i></a></li>
<li><a href="#"><i class="ti-vimeo-alt"></i></a></li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/parallax.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>