-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
409 lines (397 loc) · 24.9 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Satellite Print Labs</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/landing-page.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="img/wsilogo_favicon.ico" type="image/x-icon">
<link rel="icon" href="img/wsilogo_favicon.ico" type="image/x-icon">
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top my_nav" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<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="#">Satellite Print Labs</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#about">About Us</a>
</li>
<li>
<a href="apparel.html">Apparel</a>
</li>
<li>
<a href="#das">Decals and Stickers</a>
</li>
<li>
<a href="#banners">Full Banners</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Header -->
<div class="intro-header img-responsive">
<div class="container">
<div class="row">
<div class="col-lg-12 dark_opacity">
<div class="intro-message">
<img class="main-logo" src="img/logo.png">
<h3>Creating Out of This World Branding Material in Austin, TX.</h3>
<hr class="intro-divider">
<ul class="list-inline intro-social-buttons">
<li>
<a href="#about" class="btn btn-default btn-lg">
<span class="network-name">About Us</span>
</a>
</li>
<li>
<a href="apparel.html" class="btn btn-default btn-lg">
<span class="network-name">Apparel</span>
</a>
</li>
<li>
<a href="#das" class="btn btn-default btn-lg">
<span class="network-name">Decals and Stickers</span>
</a>
</li>
<li>
<a href="#banners" class="btn btn-default btn-lg">
<span class="network-name">Full Banners</span>
</a>
</li>
<li>
<a href="#" class="btn btn-default btn-lg">
<span class="network-name">Contact</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.intro-header -->
<div class="shadow">
</div>
<!-- Page Content -->
<div id="about" class="content-section-about">
<div class="container">
<h1>About Us</h1>
<div>
<p>Thank you for choosing Satellite PrintLab for your marketing needs! The purpose of our Lab is to give you the most important and necessary items for your brand to market.We have found that banners and decals are 2 of the most items all brands need. We offer die cut decals, vinyl lettering, and printed die cut decals. For our banners, you can get any size, with grommets and a full color print.<br><br>Looking for more? We offer high quality hats and t-shirts to help you use your valuable dollars on a lasting form of advertising.<br><br>Our prices are untouchable! Why you ask? We don't have the overhead that most companies have. This doesn't mean we are "cheap" it just means we get things done faster with 100% satisfaction guaranteed.<br><br>Still unsure? See our happy customers comments below.</p>
</div>
<h2>Hear from Our Happy Customers</h2>
<div class="happy">
<p>" Without a doubt the best company I have ever dealt with when it comes to making decals. The response was immediate to my questions and the quality of the product was spot on. I would highly recommend Satellite PrintLab to all businesses that want it done right quickly and efficiently. No doubt in my mind that my next order for decals and banners will be with Satellite."<br>- Kyle Austin</p>
<hr>
<p>"We've used Satellite PrintLab for our die cut decals for the past two years and have always been satisfied with the quality and production time. They have really gone above and beyond for us."<br>- Machi Block, Elevated Clothing</p>
<hr>
<p>"We are a new shop and have to be very smart about where we spend our money right now. We have a large van that we needed to turn into a large mobile sign. Vinyl wraps are really costly, Satellite PrintLab already did our shop stickers and they offered to use large format die-cut vinyl to convert it to a "board shop promo van". In less than two days they worked with our art, printed, and custom installed the graphics. Half the van is done in flat black graphics on gloss white, it looks very professional. Everything we have done with SPL has exceeded expectations in quality and been faster than promised. Whenever we have a marketing piece or print job our first call is to see if SPL can do it for us."<br>- Dan Rove Supply Company, Austin TX</p>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-about -->
<div id="apparel" class="content-section-a">
<div class="container">
<h1>Our Brands</h1>
<div class="row">
<div class="col-xs-6 col-md-4">
<a class="thumbnail">
<img src="img/Smith_Logo_Primary_Final.png" class="smith">
</a>
</div>
<div class="col-xs-6 col-md-4">
<a class="thumbnail">
<img src="img/arcteryxlogo.png">
</a>
</div>
<div class="col-xs-6 col-md-4">
<a class="thumbnail">
<img src="img/reeflogo.jpg">
</a>
</div>
</div>
<div class="row">
<div id="centerthebottom" class="col-xs-6 col-md-6">
<a class="thumbnail">
<img src="img/hotchillyslogo.png">
</a>
</div>
<div class="col-xs-6 col-md-6">
<a class="thumbnail">
<img src="img/OTlogo.jpg">
</a>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-a -->
<div id="das" class="content-section-b">
<div class="container">
<h1>Our Team</h1>
<!--Principal-->
<div class="row">
<div class="col-sm-6 col-md-4 col-md-offset-2">
<div class="thumbnail">
<div class="img-div">
<img src="img/wade1.jpg"/>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="caption">
<h3 id="wade">Wade Windom</h3>
<h4>Principal Rep.</h4>
<p class="disappearsmall">Wade started repping in 1995 a few years after graduating college. He incorporated into WSI in 2001. While he had no idea at the time, this was the best decision he have ever made. He truly loves what he does and is honored to have such great partners.</p>
<p><a href="mailto:wade@wsioutdoor.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
<!--End Principal row-->
<!--ROW 1 -->
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="img-div">
<img src="img/tom1.jpg" />
</div>
<div class="caption">
<h3>Tom Westveld</h3>
<h4>Sales Rep.</h4>
<p class="disappearsmall">Tom joined WSI in April 2006.
He has enjoyed a lifelong career in the sports and outdoor industry. He enjoys travel, any outdoor activity, motorcycles, and holds a Private Pilot's License.
Tom and his wife, Holly, reside in Austin, Texas.</p>
<p><a href="mailto:tom@wsioutdoor.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="img-div">
<img src="img/aaron1.jpg"/>
</div>
<div class="caption">
<h3>Aaron Barber</h3>
<h4>Sales Rep.</h4>
<p class="disappearsmall">Aaron started with WSI Outdoor in 2009.
He loves climbing in Oregon, surfing in El Salvador and enjoying live music everywhere. You can usually find him on a bike.
He lives with his wife, Kate, in downtown Austin.</p>
<p><a href="mailto:aaron@wsioutdoor.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="img-div">
<img src="img/ashlee1.jpg" />
</div>
<div class="caption">
<h3>Ashlee Newman</h3>
<h4>Sales Rep.</h4>
<p class="disappearsmall">Ashlee joined WSI in 2012.
She enjoys fishing, photography and camping.
An avid traveler, Ashlee now calls Austin, Texas home.</p>
<p><a href="mailto:ashlee@wsioutdoor.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
</div>
<!--END ROW 1 -->
<!--ROW 2 -->
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="img-div">
<img src="img/ryan1.jpg" />
</div>
<div class="caption">
<h3>Ryan Folkes</h3>
<h4>Sales Rep.</h4>
<p class="disappearsmall">Ryan lives in the Fayetteville, Arkansas area, and represents Smith in North Texas, Oklahoma and Arkansas.
Ryan is an avid outdoorsman, and spent his retail days at a local outfitter.</p>
<p><a href="mailto:ryan@wsioutdoor.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="img-div">
<img src="img/paul1.jpg" />
</div>
<div class="caption">
<h3>Paul Loesch</h3>
<h4>Field Technical Rep.</h4>
<p class="disappearsmall">Paul Loesch lives in Austin, Texas.
Paul is an accomplished outdoor enthusiast, and when he is not in the stores spreading Smith love, he is racing singletrack or laying down miles on his road bike. </p>
<p><a href="mailto:paul@wsioutdoor.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<div class="img-div">
<img src="img/carmen1.jpg" />
</div>
<div class="caption">
<h3>Carmen Zamzow Hart</h3>
<h4>Agency Support Manager</h4>
<p class="disappearsmall">Joined the team in 2011.
Originally an Idaho native, Carmen now resides in Denver, Colorado with her husband, Bret. She loves traveling, skiing, and soccer.</p>
<p><a href="mailto:cgzamzow@gmail.com" class="btn btn-primary" role="button">Contact</a>
</div>
</div>
</div>
</div>
<!--END ROW 2 -->
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-b -->
<!--carousel -->
<div id="banners" class="container">
<h1>Our Showroom</h1>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="img/reef.jpg" alt="...">
<div class="carousel-caption">
REEF
</div>
</div>
<div class="item">
<img src="img/arc.jpeg" alt="...">
<div class="carousel-caption">
Arc'teryx
</div>
</div>
<div class="item">
<img src="img/arcbags.jpeg" alt="...">
<div class="carousel-caption">
Arc'teryx Bags
</div>
</div>
<div class="item">
<img src="img/smith.jpeg" alt="...">
<div class="carousel-caption">
Smith Optics
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<!--end carousel -->
<!-- /.content-section-a -->
<div class="container">
<div>
<h2>Connect with WSI Outdoor</h2>
</div>
<div class="row">
<div>
<img id="connect_picture" src="img/prom.jpeg" alt="picture of team">
</div>
</div>
<div class="row">
<div class="col-lg-6 socialbottom">
<ul class="list-inline banner-social-buttons">
<li>
<a target="_blank" href="https://www.facebook.com/wsioutdoorpage" class="btn btn-default btn-lg"><i class="fa fa-facebook fa-fw"></i> <span class="network-name">Facebook</span></a>
</li>
<li>
<a target="_blank" href="http://instagram.com/wsioutdoor" class="btn btn-default btn-lg"><i class="fa fa-instagram fa-fw"></i> <span class="network-name">Instagram</span></a>
</li>
</ul>
</div>
</div>
</div>
<!-- /.container -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12">
<ul class="list-inline">
<li>
<a href="http://www.wsioutdoor.com/">Home</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#brands">Our Brands</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="#team">Our Team</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="http://www.wsioutdoor.com/da.php">Dealer Access</a>
</li>
<li class="footer-menu-divider">⋅</li>
<li>
<a href="http://www.wsioutdoor.com/contact.php">Contact</a>
</li>
</ul>
<p class="copyright text-muted small">Copyright © Windom Sales Incorporated 2014. All Rights Reserved</p>
</div>
</div>
</div>
</footer>
<!-- jQuery Version 1.11.0 -->
<script src="js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>