-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·574 lines (488 loc) · 26 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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Bob Ziroll | Portfolio</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Fonts from Font Awsome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Magnific popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Custom styles for this template -->
<link rel="stylesheet" href="css/main.css">
<!-- Color styles -->
<link rel="stylesheet" href="css/colors/blue.css">
<!--<link rel="stylesheet" href="css/colors/yellow.css">-->
<!--<link rel="stylesheet" href="css/colors/red.css">-->
<!--<link rel="stylesheet" href="css/colors/purple.css">-->
<!--<link rel="stylesheet" href="css/colors/orange.css">-->
<!--<link rel="stylesheet" href="css/colors/green.css">-->
<link rel="stylesheet" href="css/style.css">
<!-- Feature detection -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900,300italic,400italic,600italic,700italic,900italic'
rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oxygen:400,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<!-- ========== **| BEGIN BODY |** ========== -->
<body>
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" 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>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav" id="main-menu">
<li><a href="#page-welcome">Home</a></li>
<li><a href="#page-skills">Skills</a></li>
<li><a href="#page-experience">Resume</a></li>
<!--<li><a href="#page-portfolio">Portfolio</a></li>-->
<li><a href="#page-education">Education</a></li>
<li><a href="#page-profile">Me</a></li>
<li><a href="#page-contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- ========== **| WELCOME |** ========== -->
<section id="page-welcome" class="page-welcome">
<div>
<!-- These are the arrows to control the slideshow, if I re-enable the slideshow in main.js
<ul class="slider-controls">
<li><a id="vegas-next" class="next" href="#"></a></li>
<li><a id="vegas-prev" class="prev" href="#"></a></li>
</ul>
-->
</div>
<div class="container">
<div class="row">
<header class="centered">
<h1>Bob Ziroll</h1>
<p>Web Developer</p>
</header>
<div class="social-icons">
<a href="https://github.com/bobziroll" title="GitHub" class="btn btn-round btn-clear btn-github" target="_blank"><i
class="fa fa-github"></i></a>
<a href="https://twitter.com/bobziroll" title="Twitter" class="btn btn-round btn-clear btn-twitter" target="_blank"><i
class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/bobziroll" title="Facebook" class="btn btn-round btn-clear btn-facebook"
target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/bobziroll" title="Instagram" class="btn btn-round btn-clear btn-instagram"
target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/bobziroll" title="Linkedin" class="btn btn-round btn-clear btn-linkedin"
target="_blank"><i class="fa fa-linkedin-square"></i></a>
<!--<a href="https://www.google.com/" class="btn btn-round btn-clear btn-google"><i class="fa fa-google-plus"></i></a>-->
</div>
<a href="#page-portfolio" class="btn btn-default hire-me">See My Portfolio</a>
</div>
</div>
</section><!-- welcome ends -->
<!-- ========== **| SKILLS |** ========== -->
<section id="page-skills" class="page-skills">
<div class="container">
<header class="section-header">
<h2 class="section-title"><span>Skills</span></h2>
<div class="spacer"></div>
<p class="section-subtitle">I'm pretty good at a lot of things. Here are just a few of them.</p>
</header>
<div class="row">
<!--HTML 5-->
<div class="col-md-3">
<img src="img/html5-logo.png" class="skill-set img-responsive">
<h3>HTML 5</h3>
</div>
<!--CSS 3-->
<div class="col-md-3">
<img src="img/css3-logo.png" class="skill-set img-responsive">
<h3>CSS 3</h3>
</div>
<!--JavaScript-->
<div class="col-md-3">
<img src="img/javascript-logo.png" class="skill-set img-responsive">
<h3>JavaScript</h3>
</div>
<!--AngularJS-->
<div class="col-md-3">
<img src="img/angularjs-logo.png" class="skill-set img-responsive">
<h3>AngularJS</h3>
</div>
</div>
<div class="row">
<!--Python-->
<div class="col-md-3">
<img src="img/python-logo.png" class="skill-set img-responsive">
<h3>Python</h3>
</div>
<!--Illustrator-->
<div class="col-md-3">
<img src="img/ai-logo.png" class="skill-set img-responsive">
<h3>Illustrator</h3>
</div>
<!--Photoshop-->
<div class="col-md-3">
<img src="img/ps-logo.png" class="skill-set img-responsive">
<h3>Photoshop</h3>
</div>
<!--Indesign-->
<div class="col-md-3">
<img src="img/id-logo.png" class="skill-set img-responsive">
<h3>Indesign</h3>
</div>
</div>
<div class="row">
<!--Django-->
<div class="col-md-4">
<img src="img/django-logo.png" class="skill-set img-responsive">
<h3>Django</h3>
</div>
<!--Git-->
<div class="col-md-4">
<img src="img/git-logo.png" class="skill-set img-responsive">
<h3>Git</h3>
</div>
<!--Node.js-->
<div class="col-md-4">
<img src="img/nodejs_logo.jpg" class="skill-set img-responsive">
<h3>Node.js</h3>
</div>
</div>
</div>
</section><!-- skills ends -->
<!-- ========== **| PORTFOLIO |** ========== -->
<!--
<section id="page-portfolio" class="page-portfolio">
<div class="container">
<div class="row">
<header class="section-header">
<h2 class="section-title"><span>Portfolio</span></h2>
<div class="spacer"></div>
<p class="section-subtitle">Here's some of the work I've done.</p>
</header>
<div id="grid-controls-wrapper">
<ul class="nav nav-pills center-pills grid-controls">
<li class="active filter"><a href="javascript:void(0)" data-filter="*">All</a></li>
<li class="filter"><a href="javascript:void(0)" data-filter=".branding">Branding</a></li>
<li class="filter"><a href="javascript:void(0)" data-filter=".design">Design</a></li>
<li class="filter"><a href="javascript:void(0)" data-filter=".photography">Photography</a>
</li>
<li class="filter"><a href="javascript:void(0)" data-filter=".web">Website</a></li>
</ul>
</div>
<div>
<ul id="grid" class="grid-wrapper">
<li class="mix web">
<a href="img/portfolio/large/01.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/01.png" alt="">
</a></li>
<li class="mix design">
<a href="img/portfolio/large/02.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/02.png" alt=""></a></li>
<li class="mix design">
<a href="img/portfolio/large/03.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/03.png" alt=""></a></li>
<li class="mix web">
<a href="img/portfolio/large/04.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/04.png" alt=""></a></li>
<li class="mix branding">
<a href="img/portfolio/large/05.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/05.png" alt=""></a></li>
<li class="mix design">
<a href="img/portfolio/large/06.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/06.png" alt=""></a></li>
<li class="mix photography">
<a href="img/portfolio/large/07.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/07.png" alt=""></a></li>
<li class="mix photography">
<a href="img/portfolio/large/08.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/08.png" alt=""></a></li>
<li class="mix photography">
<a href="img/portfolio/large/09.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/09.png" alt=""></a></li>
<li class="mix web">
<a href="img/portfolio/large/10.jpg">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/10.jpg" alt=""></a></li>
<li class="mix design">
<a href="img/portfolio/large/11.jpg">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/11.jpg" alt=""></a></li>
<li class="mix design">
<a href="img/portfolio/large/12.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/12.png" alt=""></a></li>
<li class="mix design">
<a href="img/portfolio/large/13.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/13.png" alt=""></a></li>
<li class="mix design">
<a href="img/portfolio/large/14.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/14.png" alt=""></a></li>
<li class="mix branding">
<a href="img/portfolio/large/15.png">
<div class="overlay"><i class="fa fa-search"></i></div>
<img src="img/portfolio/small/15.png" alt=""></a></li>
</ul>
</div>
</div>
</div>
</section>
-->
<!-- portfolio ends -->
<!-- ========== **| EXPERIENCE |** ========== -->
<section id="page-experience" class="page-experience">
<div id="experience-container" class="container">
<header class="section-header">
<h2 class="section-title"><span>Resume</span></h2>
<div class="spacer"></div>
<p class="section-subtitle">I've got some experience under my belt.</p>
</header>
<!--Coding Campus/Verisage-->
<div class="row">
<div class="col-md-6">
<article class="experience">
<header>
<img src="img/coding-campus-logo-new.png">
<h3>Coding Campus</h3>
<p>Web Developer/Instructor <span class="pipe">|</span> Provo, UT
<span class="pipe">|</span> May '14 - Present</p>
</header>
<ul>
<li>Facilitate the learning of Coding Campus students by providing well-organized
lessons, study resources, and individualized help
</li>
<li>Aid in the creation of course materials and organization of course curriculum</li>
<!--<li>Connected with bloggers and influencers in different fields to publish client's content
and help their SEO rankings.</li>-->
</ul>
</article>
</div>
<!--97th Floor-->
<div class="col-md-6">
<article class="experience">
<header>
<img src="img/97thfloor-logo.png">
<h3>97th Floor</h3>
<p>Enterprise Digital Marketer <span class="pipe">|</span> Lehi, UT <span class="pipe">|</span> Nov '13 - Mar '14
</p>
</header>
<ul>
<li>Aided in the search engine optimization efforts of a few different clients including espnW, O.C. Tanner, and
DefensiveDriving.com
</li>
<li>Conducted keyword research for espnW using Google's Keyword Research tools and assessed which were best to
target based on the keyword opposition-to-benefit (KOB) score
</li>
<li>Connected with bloggers and influencers in different fields to publish client's content and help their SEO
rankings.
</li>
</ul>
</article>
</div>
</div>
<!--EarthSafe Batteries-->
<div class="row">
<div class="col-md-6">
<article class="experience">
<header>
<img src="img/earthsafe-logo.png" style="padding: 10px;">
<h3>EarthSafe Batteries</h3>
<p>President <span class="pipe">|</span> Murray, UT <span class="pipe">|</span> Apr '13 - Present</p>
</header>
<ul>
<li>Assist in creation of startup, increasing sales almost 550% within first 7 months</li>
<li>Analyze customer battery maintenance problems and develop individualized solutions</li>
<li>Create strong sales leads and foster/maintain profitable relationships</li>
<li>Create instructional videos to train mechanics on the installation of equipment</li>
<li>Aid in all accounting, inventory maintenance, logistics, and strategic planning</li>
</ul>
</article>
</div>
<!--BBDO NY-->
<div class="col-md-6">
<article class="experience">
<header>
<img src="img/bbdo-logo.gif">
<h3>BBDO New York</h3>
<p>Strategic Planning Intern <span class="pipe">|</span> New York, NY <span class="pipe">|</span> Apr' 11 - Jun '11
</p>
</header>
<ul>
<li>Researched beverage innovations for AMP Energy Drink that led to a presentation of research to client</li>
<li>Researched “green” movement and created company characteristic book for Lowe’s</li>
<li>Prepared and helped edit video for global focus group for Johnson & Johnson</li>
<li>Wrote “day-in-the-life” profiles for Milky Way to better define target market</li>
<li>Researched new trends in masculinity and defined new target market for Zirh Skincare for men, ultimately
informing the overall campaign strategy
</li>
<li>Attended seminars about digital media and qualitative research methods</li>
</ul>
</article>
</div>
</div>
<!--BYU Center for Entrepreneurship and Technology-->
<div class="row">
<div class="col-md-6">
<article class="experience">
<header>
<img src="img/byu-logo.jpg" style="padding: 10px;">
<h3>Brigham Young University</h3>
<h5>Center for Entrepreneurship and Technology</h5>
<p>Teaching Assistant <span class="pipe">|</span> Provo, UT <span class="pipe">|</span> Aug '09 - Apr '10</p>
</header>
<ul>
<li>Organized class structure, created course syllabus, and graded assignments for over 200
students per semester
</li>
<li>Hosted symposium for nationally successful entrepreneurs and moderated
question-and-answer sessions between students and the guest speaker
</li>
</ul>
</article>
</div>
</div>
</div>
</section><!-- experience ends -->
<!-- ========== **| EDUCATION |** ========== -->
<section id="page-education" class="page-education">
<div class="container">
<header class="section-header">
<h2 class="section-title"><span>Education</span></h2>
<div class="spacer"></div>
<p class="section-subtitle">I've been taught a thing or two along the way.</p>
</header>
<div class="row">
<div class="col-md-6">
<article class="education">
<header>
<img src="img/coding-campus-logo-new.png">
<h3>Coding Campus</h3>
<p>Certificate of Completion – <strong>Completed: </strong>May 19, 2014</p>
</header>
<p>Coding Campus is a 12-week, full-time learning course focused on teaching
web and software development through both lecture- and project- focused learning.
At the time I took the class, the languages and technologies I learned included HTML, CSS, JavaScript,
AngularJS, Git, Python,
and Django.</p>
</article>
</div>
<div class="col-md-6">
<article class="education">
<header>
<img src="img/byu-logo.jpg">
<h3>Brigham Young University</h3>
<p>BA Communications: Advertising Emphasis; Business Minor – <strong>Graduated: </strong>Aug
2011</p>
</header>
<p>The advertising program at BYU is consistently ranked among the best undergraduate
advertising programs in the nation. While there, I focused on the strategic planning
aspect of advertising – researching trends, brands, and consumers, and implementing the
findings into a strategic campaign that best communicates the company's core message.</p>
</article>
</div>
</div>
</div>
</section>
<!-- education ends -->
<!-- ========== **| ME |** ========== -->
<section id="page-profile" class="page-profile">
<div class="container">
<header class="section-header">
<h2 class="section-title">Me</h2>
<div class="spacer"></div>
<p class="section-subtitle">As my mom always said, "It started on a snowy March morning..."</p>
</header>
<div class="row">
<div class="col-md-3">
<div class="profile"><img src="img/bob-photo.jpg" alt="profile"/></div>
</div>
<div class="col-md-9">
<p>I really started programming in middle school on my TI-83+ graphing calculator. I wish I had realized then that I could
have kept building programs as a career.</p>
<p>I studied communications in college and emphasized in advertising. I finished an internship at a very well-known
advertising agency and began working at a digital marketing agency doing search engine optimization. After not too long,
I realized that I had more fun concepting new business ideas and building them out than I did simply promoting other
people's stuff, so I started learning programming in my spare time through various online resources. When the
opportunity arose to really focus on learning to code, I jumped at the chance.</p>
<p>I'm currently the lead instructor of the MEAN stack course at <a href="http://codingcamp.us/" target="_blank">Coding Campus</a>. We teach a myriad of
languages and technologies (including JavaScript, AngularJS, Node.js, Express, Mongo, Mongoose, HTML, CSS, and Bootstrap) to students either looking to
improve their contributions at work or to undergo a complete career change.</p>
<p></p>
</div>
</div>
</div>
</section>
<!-- profile ends -->
<!-- ========== **| CONTACT |** ========== -->
<section id="page-contact" class="page-contact">
<div class="container">
<header class="section-header">
<h2 class="section-title"><span>Contact</span></h2>
</header>
<div class="row">
<div class="col-md-12 contact-info">
<p><i class="fa fa-phone"></i> (801) 616-6474</p>
<p><a href="mailto:[email protected]"><i class="fa fa-envelope-o"></i> [email protected]</p></a>
<div class="social-icons">
<a href="https://twitter.com/intent/tweet?screen_name=bobziroll" class="btn btn-round btn-clear btn-twitter"
target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/bobziroll" class="btn btn-round btn-clear btn-facebook" target="_blank"><i
class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/bobziroll" class="btn btn-round btn-clear btn-instagram" target="_blank"><i
class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/bobziroll" class="btn btn-round btn-clear btn-linkedin" target="_blank"><i
class="fa fa-linkedin-square"></i></a>
<!--<a href="https://www.google.com/" class="btn btn-round btn-clear btn-google"><i class="fa fa-google-plus"></i></a>-->
</div>
</div>
</div><!-- End row -->
</div>
</section> <!-- contact ends -->
<!-- ========== **| SCRIPTS |** ========== -->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.scrollTo.js"></script>
<script src="js/jquery.nav.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/jquery.easypiechart.min.js"></script>
<script src="js/jquery.vegas.min.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/jquery.validate.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>