This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
forked from rampatra/wedding-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·845 lines (777 loc) · 41.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
<!doctype html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>Katya and Pranava tying the knot!</title>
<meta name="description" content="We would like to invite you to our big day.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Russia meets India">
<meta property="og:description" content="We would like to invite you to our big day.">
<meta property="og:image" content="https://russiameetsindia.com/img/IMG.jpg">
<meta property="og:type" content="website">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon_1.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32_1.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16_1.png">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<script>
// load css files from CDN if local node_modules fail
function loadCssFromCDN(css) {
// create new link tag
const link = document.createElement('link');
if (css === 'animate.css') {
link.href = 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css';
} else if (css === 'font-awesome.css') {
link.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css';
}
link.rel = 'stylesheet';
// add link tag to head section
document.getElementsByTagName('head')[0].appendChild(link);
}
// load js files from CDN if local node_modules fail
function loadJsFromCDN(js) {
if (js === 'waypoints.js') {
document.write('<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.js"><\/script>');
} else if (js === 'jquery.js') {
document.write('<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"><\/script>');
}
}
</script>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/styles.min.css">
<link rel="stylesheet" href="css/queries.css">
<link rel="stylesheet" href="node_modules/animate.css/animate.min.css" onerror="loadCssFromCDN('animate.css')">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css" onerror="loadCssFromCDN('font-awesome.css')">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body id="top">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<section class="hero">
<section class="navigation">
<header>
<!-- <div class="header-content"> -->
<!-- <div class="logo"><a href="#"><img src="img/logo_1.png" alt="Logo"></a></div> -->
<div class="header-nav">
<nav>
<ul class="member-actions">
<li><a href="#intro" class="btn-black btn-lg">Our story</a></li>
<li><a href="#events" class="btn-black btn-lg">Events</a></li>
<li><a href="#map" class="btn-black btn-lg">Venue</a></li>
<li><a href="#rsvp" class="btn-black btn-lg">RSVP</a></li>
<li><a href="#livestream" class="btn-black btn-lg">Live stream</a></li>
</ul>
</nav>
<!-- </div> -->
</div>
</header>
</section>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="hero-content text-center">
<!-- <h1>Katya and Pranava</h1> -->
<!-- <img src="img/logo-lg_1.png"> -->
<!-- <p class="intro"></p>
<a href="#" class="btn btn-fill btn-large btn-margin-right">Scroll Down</a> -->
</div>
</div>
</div>
</div>
<div class="down-arrow floating-arrow"><a href="#invitation"><i class="fa fa-angle-down"></i></a></div>
</section>
<section id="invitation" class="top-section-padding">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p class="text-center"> <strong> Mr. and Mrs. Shanin</strong> and <strong>Mr. and Mrs. Surukuchi</strong> <br> request your gracious presence at the wedding of their children </p>
<h4> <strong> Katya</strong> and<strong> Pranava</strong> </h4>
<!-- we would like you to be a part of it</h4> -->
<p class="text-center">On <strong>Aug 31</strong>, <strong>Sep 1</strong>, & <strong>Sep 16</strong></p>
<!-- <div class="share-bar"></div> -->
</div>
</div>
</div>
<div class="row text-center">
<div class="col-sm-4 hidden-xs"></div>
<div class="col-sm-4 hidden-xs text-center"><a href="#rsvp"
class="btn btn-accent btn-large rsvp-btn">RSVP</a></div>
<div class="col-sm-4 hidden-xs"></div>
</div>
</section>
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h3 class="header">Our story</h3>
</div>
</div>
<div class="row">
<div class="col-md-3 hidden-sm hidden-xs"><img src="img/IMG_HDR2.png" class="wp1"></div>
<div class="col-md-6 justify" >
<p>What an unlikely union, huh? Pranava grew up in a large city of Hyderabad in India, and Katya - in a small town of Sosnovy Bor in Russia. Pranava is a vegetarian; Katya used to consider her meal incomplete without meat. Pranava loves origami and puzzles; Katya - theater and arts. What do we have in common? Physics! (No, for real…) </p>
<p>We met in 2013 in Chicago while studying physics at IIT (not the Indian one). In these past few years, we got 4 degrees (5th in progress) and lived in 5 cities (and visited a dozen more). Katya learned to eat spicy vegetarian food, tolerate cilantro, and acquired limited knowledge of pop culture. Pranava got limited proficiency in Russian swears, but still falls asleep at just about any musical he attends.</p>
<p>Most importantly, together we made lots of wonderful memories and friends. We are happy to (finally) get married and hope you can join us in celebrating this very special occasion!</p>
</div>
<div class="col-md-3 hidden-sm hidden-xs "><img src="img/IMG_7.png" class="wp2"></div>
</div>
<div class="row">
<div class="col-sm-3 col-sm-push-2 col-xs-6 hidden-md hidden-lg"><img src="img/IMG_HDR2.png" class="wp8"></div>
<div class="col-sm-3 col-sm-push-2 col-xs-6 hidden-md hidden-lg"><img src="img/IMG_7.png" class="wp9"></div>
</div>
<!-- <div class="row text-center">
<div class="col-md-3 hidden-sm hidden-xs text-center"><img src="img/extra/Ring.png"></div>
</div> -->
</div>
</section>
<section id="eng-pics" class="section-padding">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<!-- <h3 class="header">Engagement Pics</h3> -->
</div>
</div>
<div class="row">
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_1.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_1.jpg" alt="On our tour to "/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_2.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_2.jpg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_3.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_3.jpg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_4.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_4.jpg" alt=""/>
</div>
</a>
</div>
</div>
</div>
<div class="container">
<div class="row hidden-lg hidden-md hidden-xs">
<div class="col-xs-12 section-border section-padding"></div>
</div>
</div>
<!--<div class="row">
<div class="col-md-12">
<div class="diamond floating-logo">
<img src="img/sketch-logo.png" alt="Sketch Logo">
<div class="ring"></div>
</div>
</div>
</div>-->
</section>
<section id="eng-pics" class="section-padding">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<!-- <h3 class="header">Engagement Pics</h3> -->
</div>
</div>
<div class="row">
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_5.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_5.jpg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_6.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_6.jpg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_7.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_7.jpg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_10.jpeg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_10.jpeg" alt=""/>
</div>
</a>
</div>
</div>
<div class="container">
<div class="row hidden-lg hidden-md hidden-xs">
<div class="col-xs-12 section-border section-padding"></div>
</div>
</div>
</div>
</section>
<section id="eng-pics" class="section-padding">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<!-- <h3 class="header">Engagement Pics</h3> -->
</div>
</div>
<div class="row">
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/Shash.jpeg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/Shash.jpeg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/family_russia.jpeg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/family_russia.jpeg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/IMG_3035.jpg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/IMG_3035.jpg" alt=""/>
</div>
</a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/extra/image_1690.jpeg">
<div class="img-wrap">
<div class="overlay">
<i class="fa fa-search"></i>
</div>
<img src="img/extra/image_1690.jpeg" alt=""/>
</div>
</a>
</div>
</div>
</div>
<div class="container">
<div class="row hidden-lg hidden-md hidden-xs">
<div class="col-xs-12 section-border section-padding"></div>
</div>
</div>
</section>
<section class="invitation section-padding" id="livestream">
<div class="row text-center">
<iframe width="560" height="315" src="https://www.youtube.com/embed/jcP5KObqn8E?si=dnxYtfNBqqMOFJAx" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<!-- <div class="col-sm-4 hidden-xs text-center"><a href="https://www.youtube.com/watch?v=jcP5KObqn8E"
class="btn btn-accent btn-large rsvp-btn">Live stream</a></div> -->
</div>
</section>
<section class="events section-padding" id="events">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2 class="header">Events</h2>
</div>
</div>
<div class="row text-center">
<div class="col-md-12">
<h3 >Wedding</h3>
<div class="row text-center", style="padding: 10px">
<div class="col-sm-4 hidden-xs text-center"></div>
<div class="col-sm-4 hidden-xs text-center"><a href="#map"
class="btn btn-accent btn-large rsvp-btn">Hindu Cultural Center, Stratford, CT</a></div>
<div class="col-sm-4 hidden-xs"></div>
</div>
</div>
</div>
<div class="row", style="padding: 30px">
<div class="col-md-6 col-sm-12 col-xs-12 center">
<div class="row">
<div class="wp3">
<p><strong>August 31, <em>Thursday</em></strong></p>
<h5>Pre-wedding events</h5>
<span class="time">10AM - 12PM & 6PM - 9PM</span>
<p>Pre-wedding events include several rituals that involve getting the bride and groom ready for a married life. This will be an intimate event with few close family and friends.
The rituals will end by lunch time at around noon.
Evening will be much more casual with some music and provides the opportunity for the family and friends on either side to hangout and learn more about each other. <br>
<span class="time">Lunch and dinner will be served </span>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 col-xs-12 center">
<div class="row">
<div class="wp4">
<p><strong>September 1, <em>Friday</em></strong></p>
<h5>Wedding ceremony </h5>
<span class="time">9:30AM - 13:00PM</span>
<p> This is the main wedding and includes several rituals.
The main ceremony (muhurtam) is at 10:52 AM but the rituals start at approximately 9:30 AM and end at 12:30 PM.
The wedding will be held at a Hindu temple and the priest will provide brief english descriptions of the rituals.
<br>
<span class="time">Breakfast and lunch will be served </span>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="row section-padding text-center">
<div class="col-md-12 col-sm-12 col-xs-12 center">
<a class="btn btn-accent btn-small" data-toggle="modal" data-target="#dc-modal">
<i class="fa fa-barcode"></i> What to expect
</a>
</div>
<!-- <div class="col-md-12 col-sm-12 col-xs-12 center", style="padding: 30px">
<a class="btn btn-fill btn-small" target="_self" href="/events.html"><i class="fa fa-th-list"></i> More about the events</a>
</div> -->
</div>
</div>
<div class="row text-center">
<div class="col-md-12">
<h3 >Celebration Dinner</h3>
<div class="row text-center", style="padding: 10px">
<div class="col-sm-4 hidden-xs text-center"></div>
<div class="col-sm-4 hidden-xs text-center"><a href="#map-second"
class="btn btn-accent btn-large rsvp-btn">Vineyard Estate, Clarskburg, CA</a></div>
<div class="col-sm-4 hidden-xs"></div>
<!-- <div class="col-sm-4 hidden-xs text-center"><a href="#map-second"
class="btn btn-accent btn-large rsvp-btn">TBD, CA</a></div> -->
<div class="col-sm-4 hidden-xs"></div>
</div>
</div>
</div>
<div class="row text-left">
<div class="col-md-12">
<!-- <div class="col-md-6 col-sm-12 col-xs-12 rightcol"> -->
<div class="wp5">
<p><strong>September 16, <em>Saturday</em></strong> <span class="time">4PM - 9PM</span></p>
<p>This will be a very casual dinner to celebrate our marriage. We will host the event at a vineyard house. The house has a large outdoor area, so you are welcome to bring additional guests. We will serve food and drinks, there will be music and overall a very relaxed atmosphere. We hope to see you there!
</p>
</div>
</div>
</div>
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-xs-12 center", style="padding: 30px">
<a class="btn btn-accent btn-small" data-toggle="modal" data-target="#dc-modal-ca">
<i class="fa fa-barcode"></i> What to expect
</a>
</div>
</div>
<div id="dc-modal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span>
</button>
<h3 class="text-center section-padding">What to expect at the event</h3>
<h5>Wedding rituals</h5>
<p>
This will an abridged version of traditional telugu wedding. However, it will still take place over two days with the main event to be held on
September 1.
More information about the key rituals could be found
<!-- <a href="/events.html"> here</a> and -->
<a href="https://www.weddingbazaar.com/blog/telugu-wedding-rituals"> here</a>.
The time of the wedding is very strictly defined for the bride and the groom but it is not the case for the guests.
We would love for you to be present for the whole event, however, we request that you atleast arrive by 10:30 AM and stay for the lunch.
</p>
<h5>Etiquette and Dress code</h5>
<p>
We request you to respect the temple rules.
You will be required to take off shoes and place them in a designated area before entering the wedding hall, please plan accordingly.
There is no dress code but we request that you respect the rules of the temple and dress modestly (a.k.a nothing too revealing).
We however encourage you to wear colorful clothes and particularly so for those of you inclined to wear ethnic indian wear for <a href="https://in.pinterest.com/search/pins/?q=mens%20kurtas&rs=typed">men</a> and <a href="https://www.pinterest.com/ram_patra/mehndi-dress-for-women/">women</a>.
Pranava will be more than happy to help you with any styling questions.
</p>
<p>
The atmoshere will be quite casual. i.e, there will not be assigned seating and guests are welcome to walk in and out as desired.
The best way to describe Indian weddings is 'organized chaos', we encourage you to pariticate in this animated affair by not only following the rituals but also engaging in conversation with your friends and people around.<br>
<span class="time"> We are more than happy to help with any questions you may have about the etiquette and dressing.</span>
</p>
<h5>Gifting</h5>
<p>There is no wedding registry, and we do not expect any gifts. We really are looking foward to having you at the wedding. If you really insist on gifting, we prefer cash or gift cards over material gifts.</p>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div id="dc-modal-ca" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span>
</button>
<h3 class="text-center section-padding">What to expect at the event</h3>
<p>Please note that this is a very casual event (no assigned seating, no bridesmaids), so please don't over-dress.</p>
<p>There is no wedding registry, and we do not expect any gifts. We are really looking to commemorate our wedding by having a nice evening in the company of friends and family. If you really insist on giving something, we encourage cash or gift cards.</p>
<p>If you play any musical instrument, please consider bringing it with you for us to enjoy your skills.</p>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div id="dc-modal-accommodation" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span>
</button>
<h3 class="text-center section-padding">Travel and accommodations</h3>
<h5 class="section-padding">Travel</h5>
<p>New haven/Stratford is served by several airports.
The closest airport is in New Haven, but the flights are limited.
We instead suggest to fly to one of the international airports; JFK, LGA, EWR, or BDL.
Amnog these, if you prefer not to drive, we suggest to either fly to Newark EWR and take Amtrak to New Haven/Stratford or fly to Hartford EWR and take Uber/Lyft/Taxi.
</p>
<h5 class="section-padding">Lodging</h5>
<p> There are several 3-5 star hotels near Hindu Cultural Center. Here is a <a href="https://groups.reservations.com/EventPage7432921">list</a> of hotels with assocaited group booking rates in the neighbourhood of the venue.
Our recommendation is to stay at <a href="https://groups.reservations.com/Hotel/HotelRoomTypes.htm?hotelId=36534&idTypeId=0&inDate=08/31/23&outDate=09/01/23&NumRooms=1&gid=7432921#EventIntro">Homewood Suites</a>, Stratford.
</p>
<span class="time"> We are more than happy to help with any questions you may have about the travel and lodging.</span>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</section>
<div id="dc-modal-accommodation-ca" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span>
</button>
<h3 class="text-center section-padding">Travel and accommodations</h3>
<h5 class="section-padding">Travel</h5>
<p>
</p>
<h5 class="section-padding">Lodging</h5>
<p>
</p>
<span class="time"> We are more than happy to help with any questions you may have about the travel and lodging.</span>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</section>
<!-- <iframe
width="600"
height="450"
style="border:0"
loading="lazy"
allowfullscreen
referrerpolicy="no-referrer-when-downgrade"
src="https://www.google.com/maps/embed/v1/place?key=API_KEY
&q=Space+Needle,Seattle+WA">
</iframe> -->
<section id="map" class="section-padding">
<div class="text-center">
<h3>How do I get there?</h3>
<!-- <p class="text-center">It's way easier than you think!</p> -->
</div>
<div id="map-canvas"></div>
<div id="map-content-wrapper" class="container pointer-events-none">
<div class="row">
<div class="col-xs-offset-1 col-xs-10 col-md-offset-3 col-md-6">
<div class="text-center">
<div id="btn-show-content" class="toggle-map-content pointer-events-auto">
<i class="fa fa-info-circle"></i> Show info
</div>
</div>
<div id="map-content" class="pointer-events-auto">
<div class="row text-center">
<h3>Wedding and Pre-wedding events</h3>
<div class="col-md-6">
<h5>Hindu Cultural Center</h5>
<div><p>96 Chapel St<br> Stratford, CT 06614</p></div>
</div>
<div class="col-md-6" style="padding: 5px;">
<div class="row text-center" style="padding: 5px;">
<a class="btn btn-fill btn-small"
href="https://m.uber.com/ul/?action=setPickup&client_id=duxgXxR4atgOmnUFpMFKN18ELpX1G1FA&pickup=my_location&dropoff[formatted_address]=Hindu%20Cultural%20Center:%20 96%20Chapel%20St,%20Stratford,%20CT>&dropoff[latitude]=41.238659393767726>&dropoff[longitude]=-73.11209494663532"><i
class="fa fa-taxi"></i> Book Uber</a>
</div>
<div class="row text-center" style="padding: 5px;">
<a class="btn btn-accent btn-small" id="btn-show-map"><i class="fa fa-map-marker"></i> Show map</a>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12 center">
<a class="btn btn-accent btn-small" data-toggle="modal" data-target="#dc-modal-accommodation">
<i class="fa fa-barcode"></i> Travel and lodging
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="map-second" class="section-padding">
<!-- <div id="map-canvas-second"></div> -->
<div id=""></div>
<div id="map-content-wrapper" class="container pointer-events-none">
<div class="row">
<div class="col-xs-offset-1 col-xs-10 col-md-offset-3 col-md-6">
<div class="text-center">
<div id="btn-show-content-second" class="toggle-map-content-second pointer-events-auto">
<i class="fa fa-info-circle"></i> Show info
</div>
</div>
<div id="map-content-second" class="pointer-events-auto">
<div class="row text-center">
<h3>Celebration Dinner</h3>
<div class="col-md-6">
<h5>Vineyard Estate</h5>
<p> 53953 S River Rd<br> Clarksburg, CA 95612</p>
<!-- <h5>TBD</h5>
<p class="text-center"> Within an hour drive of Davis, CA</p> -->
</div>
<div class="col-md-6" style="padding: 5px;">
<div class="row text-center" style="padding: 5px;">
<a class="btn btn-fill btn-small"
href="https://m.uber.com/ul/?action=setPickup&client_id=PjiJ7HqJFdMJyJkK2rvFc4DgalNgz2FJ&pickup=my_location&dropoff[formatted_address]=Vineyard%20House,%20Clarksburg,%20CA%2095612%20CA&dropoff[latitude]=38.471231&dropoff[longitude]=-121.510749"><i
class="fa fa-taxi"></i> Book Uber</a>
</div>
<div class="row text-center" style="padding: 5px;">
<a class="btn btn-accent btn-small" id="btn-show-map-second"><i class="fa fa-map-marker"></i> Show map</a>
</div>
</div>
<!-- <div class="col-md-12 col-sm-12 col-xs-12 center">
<a class="btn btn-accent btn-small" data-toggle="modal" data-target="#dc-modal-accommodation-ca">
<i class="fa fa-barcode"></i> Travel and lodging
</a>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<section class="rsvp text-center" id="rsvp">
<div id="rsvp-modal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span>
</button>
<div class="section-padding">
<h3>Thank you!</h3>
<p class="text-center">We are glad to see you join us on our big day.</p>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<p class="text-right">Pre-wedding events</p>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 leftcol" id="add-to-cal1"></div>
</div>
<div class="row", style="padding: 10px">
<div class="col-md-6 col-sm-6 col-xs-6">
<p class="text-right">Wedding </p>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 leftcol" id="add-to-cal3"></div>
</div>
<div class="row", style="padding: 10px">
<div class="col-md-6 col-sm-6 col-xs-6">
<p class="text-right">Reception</p>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 leftcol" id="add-to-cal4"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h3>What are you waiting for?</h3>
<!-- <p>We would greatly appreciate if you could RSVP before Aug 13</p> -->
<form id="rsvp-form" class="rsvp-form"
action=""
method="POST">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-envelope"></i><input type="email" name="email" class=""
placeholder="Your email"
required>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-user"></i><input name="name" class=""
placeholder="Your name"
required>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-users"></i><input type="number" name="extras" class="" min="0"
max="10"
placeholder="Number of guests (including yourself)"
required>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-key"></i><input type="number" name="invite_code" id="invite_code"
class="" min="0"
placeholder="Invite code"
required>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-calendar"></i><input name="dates" class=""
placeholder="Dates attending (e.g., Aug 31, Sep 1, and Sep 16)"
required>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-cutlery"></i><input name="food_restrictions" class=""
placeholder="Any food allergies and dietary restrictions (e.g., vegan, gluten-free etc.,)">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="form-input-group">
<i class="fa fa-comment"></i><input name="comments" class=""
placeholder="Any other info you want us to know">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12" id="alert-wrapper"></div>
</div>
<button class="btn-fill rsvp-btn">
I will be there!
</button>
</form>
</div>
</div>
</div>
</section>
<footer>
<!-- <div class="container"> -->
<div class="row">
<div class="col-sm-12 text-center">
<span class="to-top-wrapper"><a href="#top" class="to-top"><i class="fa fa-angle-up"></i></a></span>
<p class="text-center">More about the <a class="btn btn-accent btn-tiny" data-toggle="modal" data-target="#illustrations"> <i class="fa fa-paint-brush"></i> Illustrations </a> on this website</p>
<p class="text-center">Designed based on Rampatra's <a href="https://github.com/rampatra/wedding-website"> wedding-website.</a></p>
</div>
<!-- </div> -->
</div>
<div id="illustrations" class="modal fade" tabindex="-1" role="dialog" >
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span>×</span>
</button>
<h4>Bapu bommalu</h4>
<br>
<!-- <div class="col-md-6"><img src="img/extra/Vinayakudu_Small.jpg"></div> -->
<!-- <div class="col-md-6"> -->
<p>The late Sri. Sattiraju Lakshminarayana, more commonly referred to as Bapu, was an acclaimed telugu director, cartoonist, and illustrator among other things.
'Bapu bomma', literally translates to 'Bapu's Illustration', and is synonymous to quintessential telugu beauty, most typically used in the cotext of describing a woman.
Checkout more artwork by Bapu at the <a href="https://bapuartcollection.com/">Bapu art collection</a> website.
Checkout <a href=" https://en.wikipedia.org/wiki/Bapu_(director)">this</a> wikipedia page to learn more about Bapu.
</p>
<!-- </div> -->
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</footer>
<script src="js/vendor/jquery-1.11.2.min.js" onerror="loadJsFromCDN('jquery.js')"></script>
<script src="node_modules/waypoints/lib/jquery.waypoints.min.js" onerror="loadJsFromCDN('waypoints.js')"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/jquery.flexslider-min.js"></script>
<script src="js/jquery.mb.YTPlayer.min.js"></script>
<script src="js/vendor/ouical.js"></script>
<script src="js/scripts.min.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAq031Fuv8fklMmslHhGLx3NPhmwQBR6a8&callback=initMap"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAq031Fuv8fklMmslHhGLx3NPhmwQBR6a8&callback=initSecondMap"></script>
<!-- Google Analytics -->
<!-- Google Analytics -->
<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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-46465113-4', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>