-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1326 lines (1239 loc) · 68.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
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
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Connie and Jeremy Wedding Weekend at Squaw Creek Resort">
<meta name="author" content="Coffeecream Themes, [email protected]">
<title>Connie & Jeremy Wedding Weekend</title>
<link rel="shortcut icon" href="images/favicon.png">
<!-- Pace Loader -->
<script src="js/pace.min.js"></script>
<link href="css/pace.css" rel="stylesheet" />
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- Superslides CSS -->
<link href="css/superslides.css" rel="stylesheet">
<!-- Countdown CSS -->
<link href="css/countdown.css" rel="stylesheet">
<!-- Owl Carousel stylesheet -->
<link href="css/owl.carousel.css" rel="stylesheet">
<!-- Owl Carousel Default Theme -->
<link href="css/owl.theme.css" rel="stylesheet">
<!-- Fancybox -->
<link href="css/jquery.fancybox.css" rel="stylesheet">
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Raleway:700,500,400,300,200,100' rel='stylesheet' type='text/css'>
<!-- <link href="http://fonts.googleapis.com/css?family=PT+Serif%7CEngagement%7COpen+Sans:800" rel="stylesheet"> -->
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- icons -->
<link rel="apple-touch-icon" sizes="57x57" href="icons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="icons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="icons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="icons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="icons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="icons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="icons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="icons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="icons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="icons//ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- HTML5 shiv 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>
<body >
<a id="home"></a>
<!-- ========== BANNER START ========== -->
<div id="slides">
<div class="slides-container">
<img src="images/pics/playa_love.jpg" alt="Playa Love" />
<img src="images/pics/engagement1.jpg" alt="Engagement Shoot" />
<img src="images/pics/engagement2.jpg" alt="Engagement Shoot" />
<img src="images/pics/engagement3.jpg" alt="Engagement Shoot" />
<img src="images/pics/engagement4.jpg" alt="Engagement Shoot" />
<img src="images/pics/engagement5.jpg" alt="Engagement Shoot" />
</div>
<div class="tint">
<div class="welcome text-center" data-scroll-reveal="enter from the top after 2s">
<h1>Connie & Jeremy</h1>
<div class="infinity-circle"></div>
<p>wedding weekend</p>
<!-- <p><span></span><i class="icon icon-infinity"></i><span></span></p> -->
<p>October 3rd, 2015</p>
</div>
</div>
<div class="countdown" data-scroll-reveal="enter from the bottom after 2.5s"></div>
<div class="scroll"><i class="fa fa-chevron-down fa-2x"></i></div>
</div>
<!-- ========== BANNER END ========== -->
<!-- ========== MENU START ========== -->
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<h2>Connie<img src="images/infinity.png" alt="infinity">Jeremy</h2>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">Us</a></li>
<li><a href="#story">Our Story</a></li>
<li><a href="#people">Our People</a></li>
<!--li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Our People</a>
<ul class="dropdown-menu">
<li><a href="index.html#people">Most Important People</a></li>
<li><a href="person1.html">Person Profile Page 1</a></li>
<li><a href="person2.html">Person Profile Page 2</a></li>
</ul>
</li-->
<li><a href="#events">Events</a></li>
<li><a href="#accommodation">Accommodations</a></li>
<li><a href="#travel">Travel</a></li>
<li><a href="#rsvp">RSVP</a></li>
<li><a href="#registry">Registry</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
<!-- ========== MENU END ========== -->
<!-- ========== ABOUT US START ========== -->
<section id="about">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>Us</h2>
<div><span></span><span class="infinity"></span><span></span></div>
<h5 data-scroll-reveal>All I've known, all I've done, all I've felt was leading to this...</h5>
</div>
</div>
<div class="row">
<div class="col-sm-6" data-scroll-reveal="enter from the left">
<img src="images/pics/connie2.jpg" class="us img-responsive img-circle" alt="" />
<h4 class="large">Connie Wong<span class="divide">The Bride</span></h4>
<ul class="social-icons">
<li><a href="http://facebook.com/therealconniewong" target="_blank"><i class="dark-gold fa fa-facebook"></i></a></li>
<li><a href="http://twitter.com/dj1con" target="_blank"><i class="dark-gold fa fa-twitter"></i></a></li>
<li><a href="http://instagr.am/djicon" target="_blank"><i class="dark-gold fa fa-instagram"></i></a></li>
</ul>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-6" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/jeremy2.jpg" class="us img-responsive img-circle" alt="" />
<h4 class="large">Jeremy Dunn<span class="divide">The Groom</span></h4>
<ul class="social-icons">
<li><a href="http://facebook.com/fractallian" target="_blank"><i class="dark-gold fa fa-facebook"></i></a></li>
<li><a href="http://instagr.am/fractallian" target="_blank"><i class="dark-gold fa fa-instagram"></i></a></li>
</ul>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h4 data-scroll-reveal>To our beloved family and friends</h4>
<p data-scroll-reveal>
We would be honored if you would join us for what will be an wonderfully memorable weekend to celebrate our love in beautiful Lake Tahoe. We naturally wanted to get married in this special and sacred place where we fell in love five years ago and have since shared many fond memories. Even though we've already purchased a home, had a baby and have been living as husband and wife in practice, we want to finally make it official and what better way to do that by sharing and celebrating our love and happiness with the people who have touched our lives, past and present. And of course you can expect no less from us than a great party with good food, good music and good times! We hope to see you in the Sierras in October!<br><br>
Love,<br>Connie & Jeremy</p>
</div>
</div>
</div>
</section>
<!-- ========== ABOUT US END ========== -->
<!-- ========== OUR STORY START ========== -->
<section id="story" style="background: #f5f4ec;">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>Our Story</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<div class="row">
<div class="col-sm-4" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/we_met.jpg" class="img-responsive img-circle" alt="" />
<h4>We met</h4>
<p>Like many others in the technology world, we met at work in 2009 at a social media startup called Context Optional. Coincidentally, he already knew of me as my DJ persona, we became friends at first until about 8 months later when fate brought us together...</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-4" data-scroll-reveal>
<img src="images/pics/skilift_kisses.jpg" class="img-responsive img-circle" alt="" />
<h4>We fell in love</h4>
<p>Those who know us well know that we had an unconventional beginning to our love story because we were both with other partners. Nevertheless, the stars aligned to allow us to open our hearts to find the true love of our lives in each other and we never looked back.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-4" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/our_way.jpg" class="img-responsive img-circle" alt="" />
<h4>We're doing it our way</h4>
<p>Who says we need to follow society standards? After living as husband and wife for many years only in practice, we're finally making it official AFTER already buying a house and having a baby! Having been through so much together already, it's only made us stronger as a couple. This is only the beginning of our forever.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<!-- <div class="row">
<div class="col-sm-12" data-scroll-reveal>
<p> </p>
<a href="blog.html" class="btn btn-lg btn-primary">Read The Whole story</a>
</div>
</div> -->
</div>
</section>
<!-- ========== OUR STORY END ========== -->
<!-- ========== PEOPLE START ========== -->
<section id="people">
<div class="container">
<div class="row">
<div class="col-sm-12 heading text-center" data-scroll-reveal>
<h2>Our People</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Alexis Wong<span class="divide right"></span></h4>
<h5>Matron of Honor</h5>
<p>Sister, lifelong mentor, mother-figure of the Bride and a soon-to-be new mother. The first-born, successful, driven, beautiful and down-to-earth... she has always taken care of her family and been an inspiration. AKA Al, Yee-Mah, Mrs. Marroush.</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/alexis.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/casson.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>Casson Trenor<span class="divide left"></span></h4>
<h5>Best Man & Master of Ceremonies</h5>
<p>Friend, confidant, comic relief and Tetris dance choreographer for the Groom. Past affiliations are Greenpeace, The Sea Shepherd, Random Vacation Experience, Bass Kitchen, the Duluth mayor's office. He could very well be the most interesting man in the world. AKA Theed.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Dora Snider<span class="divide right"></span></h4>
<h5>Bridesmaid</h5>
<p>Sister of the Bride; Dora is the only sibling with whom she spent her entire childhood through good times and bad. Supermom to the Bride's adorable niece and nephew while also juggling a career. AKA WongSni1, DDBB.</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/dora.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/isaac.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>Isaac Dunn<span class="divide left"></span></h4>
<h5>Groomsman</h5>
<p>Brother of the Groom and the only extrovert in the Dunn Family. That is why his nickname is much deserved: Uncle Fun. He is also married to his better-half, Aunt Reasonable.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Delida Wong<span class="divide right"></span></h4>
<h5>Bridesmaid</h5>
<p>Sister of the Bride, the baby of the Wong family who is traveling all the way from China for our wedding. AKA Dee, Luy Luy.</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/delida.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/james.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>James Dunn<span class="divide left"></span></h4>
<h5>Groomsman</h5>
<p>Brother of the Groom and the talented artist behind Xander's Totoro wall mural, which he was painting at the time that his nephew decided to enter the world unexpectedly.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Tammy Hulva<span class="divide right"></span></h4>
<h5>Bridesmaid</h5>
<p>Better known as Tamo. BFF of the Bride & Godmother to Xander. She runs a popular burner fashion label <a href="http://tamodesigns.com" target="_blank">Tamo Designs</a>, and retail store in the lower Haight, Wild Feather. She is a loyal and wonderful friend considered to be a member of the family.</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/tamo.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/marc.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>Marcus Blinder<span class="divide left"></span></h4>
<h5>Groomsman</h5>
<p>Better known as Marc or Blinder. Friend of the Groom and business partner to their budding start-up. Also, was the smart person who hired the Bride at Context Optional, where they all worked. Smart move, Blinder.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Joyce Chang<span class="divide right"></span></h4>
<h5>Bridesmaid</h5>
<p>"Sistah from anotha mista" and kindred fitness spirit of the Bride who is also a super talented <a href="http://joycesu.com" target="_blank">artist</a>; she was kind enough to design our amazing wedding invitation artwork. AKA Joyce Su(shi).</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/joyce.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/noel.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>Noel Hamlin<span class="divide left"></span></h4>
<h5>Bridesmaid</h5>
<p>Longtime BFF to the Bride. AKA Noetic, Noey. They've been like sisters through DJ life to Mom life and still going strong 10 years later.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Skylar Wintor<span class="divide right"></span></h4>
<h5>Flower Girl</h5>
<p>AKA Skylar Bear, Jelly Bean. Beautiful niece of the Bride and professional flower girl — this will be her fourth time as a flower girl!</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/skylar.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/xander.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>Xander Dunn<span class="divide left"></span></h4>
<h5>Ringbearer</h5>
<p>Miracle baby boy of the Bride and Groom. AKA Xander Holyfield, Xander the Great, Scappy, Boogie Bear, Cuteness Everdeen, X-Man, Xan Man, Keung Jai.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-3 text-right" data-scroll-reveal="enter from the left after 0.25s">
<h4>Oi Hing Fung<span class="divide right"></span></h4>
<h5>Mother of the Bride</h5>
<p>AKA Winnie, Mom, Po-Po. She lovingly and selflessly raised 4 daughters, 3 of which were not her own but she loved us nevertheless and now she is a wonderful Grandmother.</p>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/mom.jpg" class="people img-responsive img-circle" alt="" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<img src="images/pics/alan_terriann.jpg" class="people img-responsive img-circle" alt="" />
</div>
<div class="col-sm-3" data-scroll-reveal="enter from the right after 0.5s">
<h4>Alan & Terriann Dunn<span class="divide left"></span></h4>
<h5>Parents of the Groom</h5>
<p>Mama Dunn aka Grandma is the artistic talent behind the beautiful flower arrangements and decor that will adorn our wedding! Papa Dunn aka Grandpa is pretty cool too.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
</div>
</section>
<!-- ========== PEOPLE END ========== -->
<!-- ========== EVENTS START ========== -->
<section id="events" style="background: #f5f4ec;">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>The Events</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<div class="row">
<div class="col-sm-4" data-scroll-reveal="enter from the left after 0.25s">
<div class="blog-short">
<img src="images/geo_medium.jpg" class="img-responsive" alt="" />
<h4>Rehearsal Dinner<span class="divide"></span></h4>
<h5>Friday October 2, 2015</h5>
<p>We invite the wedding party, family and out-of-town guests to join us for a casual mix & mingle rehearsal dinner and cocktails the evening before the wedding at Plumpjack Squaw Valley. There is a free shuttle from the Resort at Squaw Creek to and from Squaw Village, or it's a few minutes by car.</p>
<!-- <p><a href="post.html" class="btn btn-primary">Read More</a></p> -->
</div>
</div>
<div class="col-sm-4" data-scroll-reveal>
<div class="blog-short">
<img src="images/pics/spa_deck.jpg" class="img-responsive" alt="" />
<h4>Wedding Ceremony<span class="divide"></span></h4>
<h5>Saturday October 3, 2015<br>4pm</h5>
<p>The ceremony will be held outdoors on the Spa Deck at the Resort at Squaw Creek with a view of the golf course and the beautiful Sierras. Formal to semi-formal attire requested, optional theme colors: black & gold.</p>
<!-- <p><a href="post.html" class="btn btn-primary">Read More</a></p> -->
</div>
</div>
<div class="col-sm-4" data-scroll-reveal="enter from the right after 0.25s">
<div class="blog-short">
<img src="images/pics/champagne.jpg" class="img-responsive" alt="" />
<h4>Cocktail Hour<span class="divide"></span></h4>
<h5>Saturday October 3, 2015<br>4:30-5:30pm</h5>
<p>Immediately following the ceremony, and before the reception, there will be a hosted cocktail hour also on the spa deck with passed hors d'oeuvres and music while the wedding party is photographed with guests.</p>
<!-- <p><a href="post.html" class="btn btn-primary">Read More</a></p> -->
</div>
</div>
<div class="col-sm-4" data-scroll-reveal>
<div class="blog-short">
<img src="images/geo_medium.jpg" class="img-responsive" alt="" />
<h4>Wedding Reception<span class="divide"></span></h4>
<h5>Saturday October 3, 2015<br>6pm</h5>
<p>After the cocktail hour, the party will be moving indoors for the reception in the Alpine Ballroom. Plated dinner will be served with an eclectic mix of live music provided by some of our amazing world-class DJ friends. You'll have never heard music this good at a wedding. That's how we do.</p>
<!-- <p><a href="post.html" class="btn btn-primary">Read More</a></p> -->
</div>
</div>
<div class="col-sm-4" data-scroll-reveal>
<div class="blog-short">
<img src="images/pics/tahoe_summer.jpg" class="img-responsive" alt="" />
<h4>Picnic at Lake Tahoe with Mr. and Mrs. Dunn<span class="divide"></span></h4>
<h5>Sunday October 4, 2015<br>noonish</h5>
<p>After the whirlwind wedding festivities, let's hang out, relax, have some mimosas and a picnic at the centerpiece of the Sierras at beautiful Lake Tahoe! We'll have a spot by the beach with access to boat/kayak rentals, and other fun lake activities.</p>
<!-- <p><a href="post.html" class="btn btn-primary">Read More</a></p> -->
</div>
</div>
</div>
</div>
</section>
<!-- ========== EVENTS END ========== -->
<!-- ========== ACOOMMODATION START ========== -->
<section id="accommodation">
<div class="container">
<div class="row">
<div class="col-sm-12 heading text-center" data-scroll-reveal>
<h2>Accommodations</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<div class="row row-margin" data-scroll-reveal>
<div class="col-sm-4 text-center" data-scroll-reveal="enter from the left after 0.25s">
<a href="http://www.squawcreek.com" target="_blank" class="hover-effect">
<img src="images/pics/squaw_creek.jpg" class="img-responsive img-circle" alt="" />
<span class="img-circle">
<i class="fa fa-link fa-3x"></i>
</span>
</a>
</div>
<div class="col-sm-8" data-scroll-reveal="enter from the right after 0.25s">
<h4><a href="http://www.squawcreek.com" target="_blank">Resort at Squaw Creek</a></h4>
<h6><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i></h6>
<p>Our wedding venue is a AAA <i class="fa fa-diamond"></i><i class="fa fa-diamond"></i><i class="fa fa-diamond"></i><i class="fa fa-diamond"></i> luxury resort at the base of Squaw Valley Ski Resort with Squaw Village and beautiful Lake Tahoe 5 minutes away. On the grounds, there is an 18-hole golf course, full-service spa, heated pools with jacuzzis and water slide, tennis courts, restaurants, bars and plenty of outdoor activities for families. Discounted room rates, $199 for a standard room or $229 for a fireplace suite, are available now for our wedding weekend with a 2-night minimum stay. Discounted valet parking, golf and spa rates are also available so be sure to mention the Wong-Dunn wedding at time of booking to get the discounted rates. Please book as soon as possible to ensure they will hold enough rooms for our party. Contact Ricky Bedger, Group Rooms coordinator: <i class="fa fa-phone"></i> (530) 584-4089 or <i class="fa fa-envelope-o"></i> <a href="mailto:[email protected]">[email protected]</a></p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin" data-scroll-reveal>
<div class="col-sm-4 text-center" data-scroll-reveal="enter from the left after 0.25s">
<a href="http://squawalpine.com/lodging/village-squaw-valley-lodging" target="_blank" class="hover-effect">
<img src="images/pics/squaw_valley.jpg" class="img-responsive img-circle" alt="" />
<span class="img-circle">
<i class="fa fa-link fa-3x"></i>
</span>
</a>
</div>
<div class="col-sm-8" data-scroll-reveal="enter from the right after 0.25s">
<h4><a href="http://squawalpine.com/lodging/village-squaw-valley-lodging" target="_blank">Village at Squaw Valley Lodging</a></h4>
<h6><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half"></i></h6>
<p>If you would rather not stay at the resort, lodging is available nearby at Squaw Village only a couple minutes away with a free shuttle from the Resort at Squaw Creek. They have single rooms and one, two and three-bedroom condos available at reasonable rates. There are plenty of restaurants, shops, outdoor activities right in the village. Unfortunately, we can't offer discounted room rates should you choose to stay here. <i class="fa fa-phone"></i> (888) 259-1428</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin" data-scroll-reveal>
<div class="col-sm-4 text-center" data-scroll-reveal="enter from the left after 0.25s">
<a href="http://www.plumpjacksquawvalleyinn.com/" target="_blank" class="hover-effect">
<img src="images/pics/plumpjack.jpg" class="img-responsive img-circle" alt="" />
<span class="img-circle">
<i class="fa fa-link fa-3x"></i>
</span>
</a>
</div>
<div class="col-sm-8" data-scroll-reveal="enter from the right after 0.25s">
<h4><a href="http://www.plumpjacksquawvalleyinn.com/" target="_blank">Plumpjack Squaw Valley Inn</a></h4>
<h6><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star-half"></i></h6>
<p>Our rehearsal dinner venue is a cozy, lodge-like boutique inn right at the base of Squaw Valley just outside the village. It includes a fine-dining restaurant with an extensive wine list, a casual bar menu in the lounge and a spa. Plumpjack are most known for their award-winning restaurants and wineries in Napa and San Francisco. Unfortunately, we can't offer discounted room rates here. <i class="fa fa-phone"></i> (800) 323-7666</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin" data-scroll-reveal>
<div class="col-sm-4 text-center" data-scroll-reveal="enter from the left after 0.25s">
<a href="http://www.vrbo.com" target="_blank" class="hover-effect">
<img src="images/pics/vacation_rental.jpg" class="img-responsive img-circle" alt="" />
<span class="img-circle">
<i class="fa fa-link fa-3x"></i>
</span>
</a>
</div>
<div class="col-sm-8" data-scroll-reveal="enter from the right after 0.25s">
<h4><a href="http://www.vrbo.com" target="_blank">VRBO</a></h4>
<p>Another option for large groups and families is to rent a vacation home away from home for the weekend in the surrounding Squaw Valley/Olympic Valley/Tahoe Donner/Tahoe City area. There are many options for very nice, cozy fully-furnished and equipped homes or condos you could easily find on resources like VRBO.</p>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
</div>
</section>
<!-- ========== ACCOMMODATION END ========== -->
<!-- ========== LOCATION START ========== -->
<section id="location">
<!-- Google Map Script -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDoRMxiPsqJ9SUuaK1KsCAjd3gqnecjlBw&sensor=false"></script>
<script type="text/javascript">
function initialize() {
// Create an array of styles.
var styles = [
{
"stylers": [
{ "saturation": -100 },
{ "gamma": 1 }
]
},{
"featureType": "water",
"stylers": [
{ "lightness": -12 }
]
}
];
// Create a new StyledMapType object, passing it the array of styles,
// as well as the name to be displayed on the map type control.
var styledMap = new google.maps.StyledMapType(styles,
{name: "Styled Map"});
var mapOptions = {
scrollwheel: false,
zoom: 12,
center: new google.maps.LatLng(39.1993652, -120.2177195),
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'map_style']
}
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
//Associate the styled map with the MapTypeId and set it to display.
map.mapTypes.set('map_style', styledMap);
map.setMapTypeId('map_style');
setMarkers(map, places);
}
var places = [
['Resort at Squaw Creek<br>400 Squaw Creek Road<br>Olympic Valley, CA 96146', 39.1993652, -120.2177195, 1]
];
function setMarkers(map, locations) {
// Add markers to the map
var image = {
url: 'images/map-marker.png',
// This marker is 40 pixels wide by 42 pixels tall.
size: new google.maps.Size(62, 58),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the pin at 20,42.
anchor: new google.maps.Point(20, 58)
};
var infowindow = new google.maps.InfoWindow();
var marker, i;
var markers = new Array();
for (var i = 0; i < locations.length; i++) {
var place = locations[i];
var myLatLng = new google.maps.LatLng(place[1], place[2], place[3]);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image,
title: place[0],
zIndex: place[3],
animation: google.maps.Animation.DROP
});
markers.push(marker);
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="map-canvas"></div>
<!-- ========== LOCATION END ========== -->
<!-- ========== TRAVEL START ========== -->
<div id="travel" data-scroll-reveal="enter from the right after 0.25s">
<div class="heading">
<h2>Travel</h2>
</div>
<p>The Resort at Squaw Creek is located approximately 200 miles east of San Francisco, 100 miles east of Sacramento and 42 miles west of Reno.</p>
<p><span class="icon-circle dark"><i class="fa fa-plane"></i></span>
For our guests traveling from out of state, the closest airport is Reno/Tahoe International (RNO), a little less than an hour away. From there, either rent a car or take the <a href="http://www.northlaketahoeexpress.com/" target="_blank">North Lake Tahoe Express</a> shuttle to the resort. You could also fly into San Francisco International (SFO) and drive approximately 3.5 hours to Tahoe. It's a beautiful drive through the Sierras during the daytime and you will not need chains at this time of year.</p>
<p><span class="icon-circle dark"><i class="fa fa-car"></i></span> <a href="http://goo.gl/1CgrMz" target="_blank">Click here</a> for driving directions from SFO.</p>
<p><span class="icon-circle dark"><i class="fa fa-car"></i></span> <a href="http://goo.gl/WSQp5h" target="_blank">Click here</a> for driving directions from RNO.</p>
<p><span class="icon-circle dark"><i class="fa fa-bus"></i></span> <a href="http://www.northlaketahoeexpress.com/" target="_blank">Click here</a> for shuttle information.</p>
</div>
<!-- ========== TRAVEL END ========== -->
<!-- ========== RSVP START ========== -->
<section id="rsvp" style="background: #f5f4ec;">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>RSVP</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<p class="row-margin" data-scroll-reveal>We are trying to be ecologically conscious by doing the RSVP process electronically instead of traditional response cards. Because a final guestlist is important for our planning and budget, we ask that you take a moment to respond, whether you're accepting or declining, by September 12. We are sorry that we cannot accommodate extra guests or plus ones, unless specifically included on your invitations. If we accidentally omitted your spouse or significant other, please let us know and we will sort you out. Also, we realize that last minute emergencies may arise, but if you replied with a Yes and cannot attend, please change your reservation status so we have an accurate headcount.</p>
<a href="http://conniejeremy.rsvpify.com" target="_blank" class="btn btn-lg btn-primary" data-scroll-reveal>RSVP Here</a>
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
<div class="row" data-scroll-reveal>
<h5><i class="fa fa-child"></i> A note to our friends with children <i class="fa fa-child"></i></h5>
<p>We love you and we love your beautiful children, but unfortunately we cannot accommodate any child over the age of 4, with the exception of family members. We apologize for the inconvenience and hope you understand; since so many of our friends are parents, it would add a substantial amount of guests if we included everyone's children. However, the Resort at Squaw Creek offers solutions with babysitting services and <a href="http://www.squawcreek.com/squaw-valley-mountain-vacations.php" target="_blank">Mountain Buddies</a>, a year-round children's activity program for kids age 4-12. If you are bringing a child under age 4, please include a note with your RSVP that he/she will need a seat or a high-chair but not a serving.</p>
</div>
</div>
</section>
<!-- ========== RSVP END ========== -->
<!-- ========== FUN FACTS START ========== -->
<!-- <section id="facts">
<div class="parallax" data-velocity="-.4"></div>
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>Fun Facts</h2>
<p><span></span><i class="fa fa-heart"></i><span></span></p>
</div>
</div>
<div class="row">
<div class="col-sm-3 col-xs-6" data-scroll-reveal="enter from the left">
<div class="img-circle">
<h3 class="timer" data-from="0" data-to="249"></h3>
<h6>Guests invited</h6>
</div>
</div>
<div class="col-sm-3 col-xs-6" data-scroll-reveal="enter from the top after 0.25s">
<div class="img-circle">
<h3 class="timer" data-from="0" data-to="34"></h3>
<h6>People involved</h6>
</div>
</div>
<div class="col-sm-3 col-xs-6" data-scroll-reveal="enter from the bottom after 0.5s">
<div class="img-circle">
<h3 class="timer" data-from="0" data-to="92"></h3>
<h6>Working hours</h6>
</div>
</div>
<div class="col-sm-3 col-xs-6" data-scroll-reveal="enter from the right after 0.75s">
<div class="img-circle">
<h3 class="timer" data-from="0" data-to="127"></h3>
<h6>Coffee cups</h6>
</div>
</div>
</div>
</div>
</section> -->
<!-- ========== FUN FACTS END ========== -->
<!-- ========== BLOG START ========== -->
<!-- <section id="blog" style="background: #f5f4ec;">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>Blog</h2>
<p><span></span><i class="fa fa-heart"></i><span></span></p>
</div>
</div>
<div class="row">
<div class="col-sm-4" data-scroll-reveal="enter from the left after 0.25s">
<div class="blog-short">
<img src="http://placehold.it/370x260.jpg" class="img-responsive" alt="" />
<h5>Bride Shower</h5>
<h6>July 1th, 2014</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent sit amet pharetra nunc, non scelerisque ligula. Cras vel justo nulla. Vestibulum a sollicitudin metus, faucibus fermentum leo.</p>
<p><a href="" class="btn btn-primary">Read More</a></p>
</div>
</div>
<div class="col-sm-4" data-scroll-reveal>
<div class="blog-short">
<img src="http://placehold.it/370x260.jpg" class="img-responsive" alt="" />
<h5>Bachelor Party</h5>
<h6>July 5th, 2014</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent sit amet pharetra nunc, non scelerisque ligula. Cras vel justo nulla. Vestibulum a sollicitudin metus, faucibus fermentum leo.</p>
<p><a href="" class="btn btn-primary">Read More</a></p>
</div>
</div>
<div class="col-sm-4" data-scroll-reveal="enter from the right after 0.5s">
<div class="blog-short">
<img src="http://placehold.it/370x260.jpg" class="img-responsive" alt="" />
<h5>Bachelorette Party</h5>
<h6>July 5th, 2014</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent sit amet pharetra nunc, non scelerisque ligula. Cras vel justo nulla. Vestibulum a sollicitudin metus, faucibus fermentum leo.</p>
<p><a href="" class="btn btn-primary">Read More</a></p>
</div>
</div>
</div>
</div>
</section> -->
<!-- ========== BLOG END ========== -->
</section>
<!-- ========== REGISTRY START ========== -->
<section id="registry">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>Registry</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<div class="row row-margin">
<div class="col-sm-6 text-right row-margin" data-scroll-reveal="enter from the left after 0.25s">
<img src="images/pics/tokyo.jpg" class="img-responsive img-circle" alt="Tokyo" />
</div>
<div class="col-sm-6 text-left row-margin" data-scroll-reveal="enter from the right after 0.25s">
<img src="images/pics/niseko.jpg" class="img-responsive img-circle" alt="Niseko" />
<div class="mobile-divider"><span></span><i class="icon icon-infinity"></i><span></span></div>
</div>
</div>
<div class="row row-margin" data-scroll-reveal>
<div class="col-sm-12 text-center">
<h4>Your presence is a wonderful gift</h4>
<p>We are so happy and honored you will be joining us for our official "I dos". Since we did everything backwards and are lucky to already have a home full of everything we need, we are opting for a non-traditional "HoneyFund" instead of a gift registry. If you would like to bestow a wedding gift upon us in the form of a contribution to our "HoneyFund", it would be very much appreciated and will be used towards our dream honeymoon to Japan. We are hoping to be able to go in the winter and divide the trip into two awesome parts: first we'll stomp around Tokyo like Godzilla, then travel north to <a href="http://www.niseko.ne.jp/en/" target="_blank">Niseko</a> to snowboard on its legendary epic powder. We've always wanted to do this and we are forever grateful to you for helping us get there! And of course, any funds leftover will be put into Xander's college fund. <i class="fa fa-heart-o"></i></p>
</div>
</div>
<div class="registry-container" data-scroll-reveal>
<h4 class="row-margin">How to contribute to our honey fund</h4>
<div class="row ways">
<div class="col-sm-5 text-left">
<p>
<span class="icon-circle dark">
<i class="fa fa-money"></i>
</span>
Just good old fashioned cashola or checks.
</p>
</div>
<div class="col-sm-7 text-left">
<span class="icon-circle or">or</span>
<p>
<span class="icon-circle dark">
<i class="fa fa-paypal"></i>
</span>
We've set up an easy and secure way to send your gift electronically via Paypal. Don't have a Paypal account? No problem! It is not necessary to have one to send your gift, nor will any fees be charged to you; the fees will only be incurred on our end.</p>
<form id="gift" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="C5LUZBQUXGT3Q" />
<a id="paypal-button" class="btn btn-primary"><i class="fa fa-gift fa-2x"></i> Send your gift</a>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- ========== REGISTRY END ========== -->
<!-- ========== GALLERY START ========== -->
<section id="gallery" style="background: #f5f4ec;">
<div class="container text-center">
<div class="row">
<div class="col-sm-12 heading" data-scroll-reveal>
<h2>Gallery</h2>
<div><span></span><span class="infinity"></span><span></span></div>
</div>
</div>
<div class="row" data-scroll-reveal>
<ul class="gallery">
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement1.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement1.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement2.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement2.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement3.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement3.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement4.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement4.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement5.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement5.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement6.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement6.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement7.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement7.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement8.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement8.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/engagement9.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement9.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Engagement Shoot">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/lassen.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/lassen.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Hiking at Mt. Lassen">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/family_portrait.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/family_portrait.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Family Portrait 2014">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/alexis_wedding.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/alexis_wedding.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Auberge Du Soleil 2014">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/first_family_photo.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/first_family_photo.jpg" class="img-rounded img-responsive"/>
<span class="img-rounded" title="First family photo at the NICU">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/playa_love.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/playa_love.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Playa Love">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/engagement.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/engagement.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Engagement at Squaw Valley 2014">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/painting.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/painting.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="New homeowners">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/ski_lift.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/ski_lift.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Ski lift lovers">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/hakkasan.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/hakkasan.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Hakkasan 2013">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/dora_wedding.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/dora_wedding.jpg" class="img-rounded img-responsive" />
<span class="img-rounded" title="Wine Country wedding 2013">
<i class="fa fa-expand fa-3x"></i>
</span>
</a>
</div>
</li>
<li class="col-xs-4 col-sm-3 col-md-2">
<div class="thumbnail-center">
<a href="images/pics/gallery/BM2013_man.jpg" class="fancybox hover-effect" data-fancybox-group="group">
<img src="images/pics/gallery/BM2013_man.jpg" class="img-rounded img-responsive portrait" />
<span class="img-rounded" title="Burning Man 2013">
<i class="fa fa-expand fa-3x"></i>
</span>