-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.htm
672 lines (647 loc) · 20 KB
/
contact.htm
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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Aldrich&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONTACT US | nitnem4all</title>
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
.navbar{
font-family: 'Aldrich', sans-serif;
overflow: hidden;
background-color: red;
}
.navbar a{
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 20px;
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
.active {
background-color: white;
color: red !important;
}
.navbar .icon {
display: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 20px;
font-weight: bold;
border: none;
outline: none;
color: white;
padding: 20px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown:hover .dropbtn{
cursor: pointer;
background-color: wheat;
color:red;
}
.navbar a:nth-child(even):not(.active):hover{
background-color: wheat;
color: red;
}
.navbar a:nth-child(odd):not(.active):hover{
background-color: white;
color: red;
}
.dropdown-content a:hover {
background-color: whitesmoke !important;
color: red !important;
}
.dropdown:hover .dropdown-content {
display: block;
}
@media screen and (max-width: 835px) {
.navbar a, .dropdown .dropbtn{
font-size: 16px;
padding:20px 13px;
}
}
@media screen and (max-width: 600px) {
.navbar a, .dropdown .dropbtn{
font-size: 20px;
padding: 20px;
}
.navbar a:not(:first-child), .dropdown .dropbtn{
display: none;
}
.navbar a.icon {
text-align: center;
float: none;
display: block;
}
}
@media screen and (max-width: 600px) {
.navbar.responsive {position: relative;}
.navbar.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.navbar.responsive a {
float: none;
display: block;
text-align: left;
}
.navbar.responsive .dropdown {float: none;}
.navbar.responsive .dropdown-content {position: relative;}
.navbar.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
}
}
.header{
text-align: center;
padding: 20px 0;
background-color: cornsilk;
}
.header h1{
text-transform: uppercase;
margin-bottom: 10px;
color: crimson;
font-size: 9vw;
}
.header code{
font-weight: bold;
font-family: cursive;
margin-top: 10px;
color: cornsilk;
font-size: 4vw;
border-radius: 20px;
padding: 10px 50px;
animation: changebgclr 16s infinite ease-in-out;
}
@keyframes changebgclr{
0% {background-color: deeppink; transition: ease-in-out 5s;}
25% {background-color:deepskyblue; transition: ease-in-out 5s;}
50% {background-color: gold; transition: ease-in-out 5s;}
75% {background-color: indigo; transition: ease-in-out 5s;}
100% {background-color: lawngreen; transition: ease-in-out 5s;}
}
.footer{
background-color: cornsilk;
text-align: center;
padding: 30px;
color: crimson;
}
.footer code{
font-size: 30px;
font-weight: bold;
text-transform: uppercase;
}
.footer b{
font-size: 30px;
}
.footer .links{
text-align: left;
padding:0;
color: red;
font-size: 30px;
margin-bottom: 7px;
}
.footer a{
color: white;
font-size: 40px;
padding: 7px;
border-radius: 20px;
margin: 7px;
}
.main{
padding: 40px;
background-color: rgb(247, 242, 234);
}
.column{
display: flex;
flex-direction: row;
}
.part1 , .part2{
background-color: white;
padding: 16px;
border-radius: 30px;
box-shadow: 10px 10px 16px lightgray;
}
.part1{
width: 500px;
margin:0 40px 0 0;
}
.part2{
width: 100%;
margin:0;
}
.part1 h1{
animation: changebgclr2 3s ease-in-out infinite;
border-radius: 16px 16px 0 0;
padding: 10px;
margin-bottom: 16px;
}
.part2 h1{
animation: changebgclr3 3s ease-in-out infinite;
border-radius: 16px 16px 0 0;
padding: 10px;
margin-bottom: 16px;
}
@keyframes changebgclr2{
0%{background-color: crimson; color:white; transition: ease-in-out 1.5s;}
50%{background-color: white; color: crimson; transition: ease-in-out 1.5s;}
100%{background-color: crimson; color:white; transition: ease-in-out 1.5s;}
}
@keyframes changebgclr3{
0%{background-color: white; color: crimson; transition: ease-in-out 1.5s;}
50%{background-color: crimson; color:white; transition: ease-in-out 1.5s;}
100%{background-color: white; color: crimson; transition: ease-in-out 1.5s;}
}
.shadow{
box-shadow: 0 0 7px 7px darkgray;
border-radius: 100px;
}
.image#odd{
float: left;
padding: 16px;
background-color: whitesmoke;
margin-right: 10px;
border-radius: 100px 0 0 100px;
}
.image:not(#odd){
float: right;
padding: 16px;
background-color: whitesmoke;
margin-left: 10px;
border-radius: 0 100px 100px 0;
}
.text#odd{
padding: 20px 30px 30px 30px;
color: white;
font-weight: bold;
font-size: 18px;
background-color: black;
height: 152.7px;
margin-left: 132px;
border-radius: 0 100px 100px 0;
}
.text:not(#odd){
padding: 30px;
background-color: black;
height: 152.7px;
margin-right: 132px;
border-radius: 100px 0 0 100px;
}
.text a{
text-decoration: none;
color: white;
text-align: center;
font-weight: bold;
font-size: 30px;
text-transform: uppercase;
}
.text a:hover{
color: lightpink;
transition: all 0.5s ease-in-out;
text-decoration: 5px lightpink underline;
}
.line {
height: 5px;
border-bottom: 2px #959087 solid;
padding-bottom: 8px;
margin-top: 3px;
margin-bottom: 15px;
}
.left{
float: left;
}
.right{
float: right;
}
.part2 form{
padding: 30px;
padding-bottom: 0;
}
.part2 form label{
font-size: 30px;
color: black;
font-weight: 500;
}
.part2 form input,.part2 form textarea{
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 16px;
outline: none;
border: 2px solid red;
font-size: 30px;
font-weight: bolder;
}
.part2 form input[type='checkbox']{
width: 20px;
height: 20px;
}
::placeholder{
color: red;
text-transform: capitalize;
}
.part2 form input:focus,textarea:focus{
background-color: rgb(252, 167, 181);
color: white;
}
.part2 form input:focus::placeholder,textarea:focus::placeholder{
color: white;
}
form textarea{
resize: vertical;
height: 160px;
}
form button{
margin-top: 20px;
text-align: center;
padding: 10px;
font-weight: bold;
font-size: 25px;
color: white;
}
form button[type='submit']{
cursor: pointer;
color: rgb(252, 167, 181);
background-color: white;
border: 2px solid red;
border-radius: 20px;
}
form button[type='reset']{
cursor: pointer;
background-color: rgb(252, 167, 181);
border: 2px solid red;
border-radius: 20px;
}
#status{
border-radius: 20px;
padding: 5px;
margin-top: 16px;
width: 100%;
font-weight: 100;
text-align: center;
font-size: 10px;
font-family: cursive;
line-height: 1.6;
}
#status.success{
font-size: 20px;
background-color: greenyellow;
color:white;
animation: status 10s ease-in-out forwards;
}
#status.error{
font-size: 20px;
background-color: red;
color:white;
animation: status 10s ease-in-out forwards;
}
@keyframes status {
0% {opacity: 1; pointer-events: all;}
90% {opacity: 1; pointer-events: all;}
100%{opacity: 0; pointer-events: none;}
}
form button[type='submit']:hover{background-color: rgb(252, 167, 181); color: white;}
form button[type='reset']:hover{background-color: white; color: rgb(252, 167, 181);}
#myBtn {
display: none;
position: fixed;
bottom: 10px;
right: 20px;
z-index: 99;
background-color: red;
color: white;
cursor: pointer;
border-radius: 30%;
padding: 5px;
padding-bottom:0;
}
#myBtn:hover{
background-color: white;
border: 2px solid violet;
color: red;
}
@media screen and (max-width: 768px){
.column{
flex-direction: column;
}
.part1,.part2{
width: 100%;
padding: 30px;
margin: 30px 0;
}
}
@media screen and (max-width: 600px){
.text#odd{
padding: 0px 30px 30px 30px;
font-size: 14px;
}
#myBtn{
bottom:70px;
}
.main{
padding: 10px;
}
.image#odd{
padding: 7px;
}
.image:not(#odd){
padding: 7px;
}
.column{
flex-direction: column;
}
.part1,.part2{
width: 100%;
margin: 30px 0;
padding: 16px;
}
.image{
float: none;
padding:16px 32.5% !important;
text-align: center !important;
height: auto !important;
width: 100% !important;
margin: 0 !important;
border-radius: 77px 77px 0 0 !important;
}
.shadow{
display: flex;
flex-direction: column;
border-radius: 77px !important;
}
.text{
padding: 30px !important;
text-align: center !important;
height: 120px !important;
margin: 0 !important;
border-radius: 0 0 77px 77px!important;
}
.text a{
text-decoration: 2px lightpink underline;
}
.shadow .text#odd{
margin-left: 82.5px;
padding: 30px !important;
text-align: center !important;
}
.text#odd.textus{
margin: 0 !important;
padding: 35px !important;
text-align: center !important;
}
.text:not(#odd){
margin-right: 82.5px;
padding: 35px !important;
text-align: center !important;
font-size: 25px;
}
.part2 form{
padding: 5.5px;
}
.part2 form textarea{
resize: vertical;
margin-bottom: 20px !important;
}
.part2 form button[type='submit']{
margin-left: 5px !important;
}
form label{
font-size: 20px !important;
}
form input{
font-size: 25px !important;
}
.footer{
text-align: left;
}
.footer b{
font-size: 20px;
}
.footer code{
font-size: 20px;
}
.footer .links{
font-size: 20px;
}
.footer a{
font-size: 20px;
}
}
</style>
</head>
<body>
<div class="header">
<a href="index.htm" style="text-decoration: none;"><h1>nitnem4all</h1></a>
<code>"Building Blocks Of Sikhism"</code>
</div>
<div class="navbar" id="mynavbar">
<a href="index.htm">HOME</a>
<div class="dropdown">
<button class="dropbtn">NITNEM PATH <i class="fa fa-caret-down"></i></button>
<div class="dropdown-content" style="text-transform: lowercase;">
<a href="Gjapji sahib.htm">JAPJI SAHIB JI</a>
<a href="Gjaap sahib.htm">JAAP SAHIB JI</a>
<a href="Gtva prasad savaiye srawag.htm">TAV PRASAD SAVAIYE (SRAWAG SUDH)</a>
<a href="Gtva prasad savaiye deenan.htm">TAV PRASAD SAVAIYE (DEENAN KI)</a>
<a href="Gtva prasad choupai.htm">TVA PRASAD CHOUPAI</a>
<a href="Gchoupai sahib.htm">CHOUPAI SAHIB JI</a>
<a href="Ganand sahib.htm">ANAND SAHIB JI</a>
<a href="Grehras sahib.htm">REHRAS SAHIB JI</a>
<a href="Gsohila sahib.htm">SOHILA SAHIB JI</a>
<a href="Gsukhmani sahib.htm">SUKHMANI SAHIB JI</a>
<a href="Gasa di var.htm">ASA DI VAAR</a>
<a href="Gbarah maha.htm">BARAH MAHA</a>
<a href="Gbasant ki vaar.htm">BASANT KI VAAR</a>
<a href="Gdukh bhanjani sahib.htm">DUKH BHANJANI SAHIB JI</a>
<a href="Graag mala.htm">RAAG MALA</a>
<a href="Gardas.htm">ARDAAS</a>
</div>
</div>
<a href="about.htm">ABOUT US</a>
<a href="contact.htm" class="active">CONTACT US</a>
<a href="download.htm">DOWNLOAD PDF</a>
<a class="icon" onclick="myFunction()"><i class="fa fa-bars"></i></a>
</div>
<script>
function myFunction() {
var x = document.getElementById("mynavbar");
if (x.className === "navbar") {
x.className += " responsive";
} else {
x.className = "navbar";
}
}
</script>
<a onclick="topFunction()" id="myBtn" title="Back To Top"><img src="uparrow.jpg" style="border-radius: 50%; height:38px; width:40px;"></a>
<script>
var mybutton = document.getElementById("myBtn");
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 370 || document.documentElement.scrollTop > 370) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<div class="main">
<div class="column">
<div class="part1">
<h1>Reach Us:</h1>
<br>
<div class="shadow">
<div class="image" id="odd"><img src="https://png.pngtree.com/svg/20170918/f2ee803a9c.png" alt="" height="116px" width="107px"></div>
<div class="text" id="odd"><code>Matoshri Ramabai Ambedkar Marg, <br>Antrolikar Nagar, <br>Solapur, <br>Maharashtra 413224.</code></div>
</div>
<div class="line">
<img src="http://www.gurunanakhealing.com/_theme/images/left_1.png" border="0" alt="" class="left">
<img src="http://www.gurunanakhealing.com/_theme/images/left_2.png" border="0" alt="" class="right">
</div>
<div class="shadow">
<div class="image"><img src="http://reoc.brockport.edu/wp-content/uploads/2017/07/call-icon-hi.png" alt="" height="116px" width="116px"> </div>
<div class="text" style="padding-top: 65px; padding-left: 50px;"><a href="tel:+918767609939">call us</a></div>
</div>
<div class="line">
<img src="http://www.gurunanakhealing.com/_theme/images/left_1.png" border="0" alt="" class="left">
<img src="http://www.gurunanakhealing.com/_theme/images/left_2.png" border="0" alt="" class="right">
</div>
<div class="shadow">
<div class="image" id="odd"><img src="http://www.freeiconspng.com/uploads/message-icon-png-13.png" alt="" height="116px" width="116px"> </div>
<div class="text textus" id="odd" style="padding-top: 65px; padding-left: 50px;"><a href="sms:+918767609939">text us</a></div>
</div>
<div class="line">
<img src="http://www.gurunanakhealing.com/_theme/images/left_1.png" border="0" alt="" class="left">
<img src="http://www.gurunanakhealing.com/_theme/images/left_2.png" border="0" alt="" class="right">
</div>
<div class="shadow">
<div class="image"><img src="https://www.shareicon.net/data/2016/10/18/844045_media_512x512.png" alt="" height="116px" width="116px"> </div>
<div class="text" style="padding-top: 50px; padding-left: 65px;"><a style="font-size: 28px;" href="https://wa.me/918767609939?text=Hey there!" target="_blank">Whatsapp us</a></div>
</div>
<div class="line">
<img src="http://www.gurunanakhealing.com/_theme/images/left_1.png" border="0" alt="" class="left">
<img src="http://www.gurunanakhealing.com/_theme/images/left_2.png" border="0" alt="" class="right">
</div>
<div class="shadow">
<div class="image" id="odd"><img src="https://tse4.mm.bing.net/th?id=OIP.g9gWiUAsg0Wgt9KnIjMinAHaHa&pid=Api&P=0&w=300&h=300" alt="" height="116px" width="107px" style="border-radius: 20px;"> </div>
<div class="text" class="lot" id="odd" style="padding-top: 65px; padding-left: 20px;"><a style=" font-size:18px;" href="mailto:nitnem4all@gmail.com?subject=hey!">nitnem4all@gmail.com</a></div>
</div>
</div>
<div class="part2">
<h1>Fill the Form:</h1>
<form action="https://formspree.io/f/mlevdvrv" method="post" id="my-form">
<label for="name">Enter Your Name: <font style="color: red;">*</font></label> <br>
<input type="text" id="name" name="fname" placeholder="first" required>
<input type="text" id="name" name="lname" placeholder="last" required>
<label for="email">Your Email: <font style="color: red;">*</font></label> <br>
<input type="text" id="email" name="email" required>
<label for="phone no">Your Phone Number: <font style="color: red;">*</font></label> <br>
<input type="text" id="phone no" name="phone no" required>
<label for="message">Message: <font style="color: red;">*</font></label> <br>
<textarea id="message" name="message" required></textarea>
<input type="checkbox" name="checkbox" id="checkbox" required>
<code for="checkbox" style="font-size: 17px; text-transform: uppercase;">By checking the box you accept that you are not a spambot and all the information given by you above is true.</code> <br><br>
<div class="g-recaptcha" data-sitekey="6Ld4O70hAAAAABfKO-qWgiPb3k5iAbPO7BuoTcXs"></div>
<div style="text-align: center;">
<button type="submit">SUBMIT</button>
<button type="reset">RESET</button>
</div>
</form>
<div id="status"></div>
</div>
</div>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3802.0552514544925!2d75.91636701390613!3d17.64754199989705!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x91bb8fcef20493b1!2sGurudwara%20Guru%20Nanak%20Darbar!5e0!3m2!1sen!2sin!4v1624543223647!5m2!1sen!2sin" width="100%" height="500px" style="border: 5px dashed rgb(247, 242, 234);" allowfullscreen="" loading="lazy"></iframe>
<div class="footer">
<b>©</b><code> nitnem4all, All rights reserved.</code> <br>
<div class="links">
<font style="font-family: cursive;">help us, like, share & subscribe: </font>
</div>
<a href="https://www.facebook.com/gurudwara.solapur" target="_blank" style="background-color: #1877f2;"><i class="fa fa-facebook-square"></i></a>
<a href="whatsapp://send?text=http://www.nitnem4all.github.io" style="background-color: rgb(153, 255, 0);"><i class="fa fa-whatsapp"></i></a>
<a href="https://www.youtube.com/channel/UCEA_RQ7li3gqTrbVsMPrUpg" target="_blank" style="background-color: red;"><i class="fa fa-youtube-play"></i></a>
<br><br><br>
</div>
<script src="contact.js"></script>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-6310a8c128794a6d"></script>
</body>
</html>