-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
299 lines (266 loc) · 11.5 KB
/
index.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A tech consultancy with a conscience.">
<meta name="keywords" content="factory pattern, the factory pattern, software engineers for hire, social media, digital marketing, cto, tech consultancy, tech consultants, find a cto, app company, hourly software, agile, scrum, app developers, iPhone developers, Android developers, web developers for hire, app developers for hire, san francisco consultancies, top san francisco app companies">
<title>Factory Pattern</title>
<!-- Styles -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/styles/jquery.fullPage.min.css"/>
<link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Nunito' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/styles/app.css"/>
<!-- scripts -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/scripts/showup.js"></script>
<script type="text/javascript" src="/scripts/jquery.fullPage.min.js"></script>
<script type="text/javascript" src="/scripts/app.js"></script>
<script>
var navigation = responsiveNav("#nav", {
animate: true, // Boolean: Use CSS3 transitions, true or false
transition: 400, // Integer: Speed of the transition, in milliseconds
label: "", // String: Label for the navigation toggle
insert: "before", // String: Insert the toggle before or after the navigation
customToggle: "", // Selector: Specify the ID of a custom toggle
openPos: "relative", // String: Position of the opened nav, relative or static
jsClass: "js", // String: 'JS enabled' class which is added to <html> el
init: function(){}, // Function: Init callback
open: function(){}, // Function: Open callback
close: function(){} // Function: Close callback
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75641734-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Factory Pattern</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="/#section2">About</a></li>
<li><a href="/#section3">Services</a></li>
<!--
<li><a href="/#section4">Benefits</a></li>
<li><a href="blog">Blog</a></li>
<li><a href="/careers">Careers</a></li>
-->
<li><a href="/#section5">Say Hi</a></li>
</ul>
</div>
</div>
</nav>
<div class="sections-fullpage">
<div class="section section-landing dark">
<div class="video-container">
<div class="title-container">
<div class="headline">
<h1 class="huge">Be Inspired</h1>
<h2 class="smallest"> Factory Pattern helps small businesses grow.</h2>
</div>
<div class="text-center prepend-xs-45 append-xs-45">
<a href="#section4" class="btn btn-danger">Say Hi</a>
</div>
</div>
<div class="filter">
</div>
<video autoplay loop class="fillWidth">
<source src="/images/background.mp4" type="video/mp4" />Your browser does not support the video tag. I suggest you upgrade your browser.
</video>
<div class="poster hidden">
<img src="/images/coffee.jpg" alt="">
</div>
</div>
<!--
<div class="container text-center">
</div>
-->
</div>
<div class="section section-about dark">
<div class="container text-center">
<div class="row append-xs-30 append-md-90">
<div class="col-sm-10 col-sm-offset-1 text-left prepend-xs-30 append-xs-30" style="text-align: center;">
<h2>Factory Pattern leverages technology and creativity to grow your brand, DNVB or business. We cut our teeth at some of the most innovative startups in Silicon Valley, and now we want to share our expertise with you. Let us take over your web marketing so that you can focus on running your business.</h2>
</div>
</div>
<!--
<div class="row">
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="x">
</div>
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="y">
</div>
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="z">
</div>
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="a">
</div>
</div>
<div class="row append-xs-60 append-md-90">
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="a">
</div>
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="a">
</div>
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="a">
</div>
<div class="col-sm-3 append-xs-30">
<img src="/images/a" width="150" alt="a">
</div>
</div>
-->
</div>
</div>
<div class="section" >
<div class="slide section-one dark">
<div class="container text-center">
<div class="col-sm-6 col-sm-offset-3">
<div class="row">
<h1 class="keyline keyline-bottom smaller">Web Presence</h1>
<h2>Your website's looking a little... old school. It doesn't work on an iPhone. You haven't tweeted since 2015. You've never responded to an online review. We can help.</h2>
</div>
</div>
</div>
</div>
<div class="slide section-four dark">
<div class="container text-center">
<div class="col-sm-6 col-sm-offset-3">
<div class="row">
<h1 class="keyline keyline-bottom smaller">SEO</h1>
<h2>How are people finding you? Sure you've got Google covered but what about YouTube? What about Yelp and Trip Advisor?</h2>
</div>
</div>
</div>
</div>
<div class="slide section-two dark">
<div class="container text-center">
<div class="col-sm-6 col-sm-offset-3">
<div class="row">
<h1 class="keyline keyline-bottom smaller">Content Creation</h1>
<h2>We write blog posts, take amazing photos and put together incredible videos. Are you losing out to your competion's web strategy?</h2>
</div>
</div>
</div>
</div>
<div class="slide section-three dark">
<div class="container text-center">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<h1 class="keyline keyline-bottom smaller">Email Marketing</h1>
<h2>We build audiences and keep them engaged. Most importantly, we convert web traffic to real life visitors.</h2>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="section section-benefits dark">
<div class="container text-center">
<div class="row append-xs-30 append-md-90">
<div class="col-sm-10 col-sm-offset-1 text-left prepend-xs-30 append-xs-30">
<h2> </h2>
</div>
</div>
</div>
</div>
-->
<div class="section section-footer dark">
<h1 class="smaller">There's never been a better time to grow your business or brand.</h1>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="well well-sm">
<form id="contact-form" name="contactform" class="form-horizontal" action="send.php" method="post">
<fieldset>
<div id="success-container" class="text-center" style="display:none;">
<p class="lead text-success"><span class="glyphicon glyphicon-ok"></span></p>
<p class="lead">Your message has been sent successfully!</p>
</div>
<div id="form-container">
<!-- Name input-->
<div class="form-group">
<label class="col-md-3 control-label" for="name">Name</label>
<div class="col-md-9">
<input id="name" name="name" type="text" placeholder="Your name" class="form-control">
</div>
</div>
<!-- Email input-->
<div class="form-group">
<label class="col-md-3 control-label" for="email">Your E-mail</label>
<div class="col-md-9">
<input id="email" name="email" type="text" pattern="^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,})$" placeholder="e.g. [email protected]" required class="form-control">
</div>
</div>
<!-- Message body -->
<div class="form-group">
<label class="col-md-3 control-label" for="message">Your message</label>
<div class="col-md-9">
<textarea class="form-control" id="project" name="project" placeholder="Please enter your message here..." rows="5"></textarea>
</div>
</div>
<!-- Form actions -->
<div class="form-group">
<div class="col-md-12" id="spin-area">
<button type="submit" class="btn btn-primary btn-lg prepend-xs-15" id="submit" value="Send">Submit</button>
</div>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
<footer class="footer">
<!--
<div class="container">
<div class="row append-xs-30">
<div class="col-sm-1">
</div>
<div class="col-sm-11 keyline keyline-left">
<ul class="nav nav-pills">
</ul>
<form action="https://blah" method="post" target="_blank" class="form-inline append-xs-15">
<div class="form-group">
<label class="sr-only" for="email">Email</label>
<input class="form-control" id="email" name="EMAIL" type="text" value="" required placeholder="Email me rarely"><input type="text" name="blah" tabindex="-1" value="" class="hidden">
</div>
<button class="btn btn-default btn-sm" type="submit">Subscribe</button>
</form>
<div class="social">
<a href="https://twitter.com/blah"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/blah"><i class="fa fa-github"></i></a>
<a href="https://www.facebook.com/blah"><i class="fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/company/blah"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div> -->
</div>
</footer>
</div>
</div>
</body>
</html>