-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
496 lines (363 loc) · 16.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset =UTF-8>
<title>assignment</title>
<link rel="stylesheet" href="assignment.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.0/css/mdb.min.css" rel="stylesheet">
<style>
body{padding-top: 0%;margin-top: 0%;text-align: center;font-family: 'sans-serif';}
section{padding-right: 0%;padding-left: 0%;margin-right: 0%;margin-left: 0%;}
p{font-size: 20 px;}
</style>
<script>
function showInput()
{alert("Donot forget to recommend others to check out our webpage");}
function showInput2()
{alert("We are at your service ,chat with us for any further information.Chat box is at the bottom of the screen");}
function changedisplay()
{
if(document.getElementById("dropdown-content1").style.display == 'block')
document.getElementById("dropdown-content1").style.display = 'none';
else
document.getElementById("dropdown-content1").style.display = 'block';
}</script>
<script>
</script>
</head>
<body>
<header>
<nav class="navbar navbar-default navbar-static-top navbar-inverse ">
<div class="container">
<ul>
<li><a href="#AboutMe">About Me</a> </li>
<li><a href="#Where we are located">Where we are located</a></li>
<li><a href="#Reach us">Reach us</a></li>
<div class="dropdown">
<li><div class="dropdown">
<button class="dropbtn" style="background-color: #333;font-size: 100%;" onclick="changedisplay()">My Captures
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content" id="dropdown-content1" style="display: none;">
<a href="#WEDDING SHOOT">Wedding Shoot</a>
<a href="#PREWEDDING SHOOT">Prewedding Shoot</a>
<a href="#NEW BEGINNINGS">New Beginnings</a>
<a href="#MATERNITY SHOOT">Maternity Shoot</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</nav>
</header>
<style>
.mySlides {display:none;}
</style>
</head>
<body>
<div class="w3-contentw3-section" style="max-width:100%;height: 100px;padding:2%;object-fit: cover;">
<img class="mySlides" src="Woods/svetilka.jpg" style="width:100%;height: 400px;object-fit: cover;" >
<img class="mySlides" src="fridge.jpg" style="width:100%;height: 400px;object-fit: cover;">
<img class="mySlides" src="amusing/silence.jpg" style="width:100%;height: 400px;object-fit: cover;">
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 2000); // Change image every 2 seconds
}
</script>
<h3 style="background: none;">SAMIR GUPTA PHOTOGRAPHY</h3><br>
<div style="width: 40%; ">
<img src="images/logo/logo.png" alt="Samir Gupta" width="30%" height="30%" style="border-radius: 50%;background: white;">
</div>
<section class ="AboutMe" id="AboutMe" style="color:black;
background: #a38fa3;" >
<h3>BEHIND THE CAMERA</h3><br>
<div style="display: inline-block;width: 40%; ">
<img src="images/logo/me.png" alt="Samir Gupta" width="70%" height="20%" style="border-radius: 50%; filter: grayscale(60%); ">
</div>
<div style="display: inline-block;width: 50%;"><p>I Samir Gupta is a professional photographer.From a very early age of 15 years,i got deeply attracted and rooted towards photography.It has been my hobby since then.Later after completing my graduation,the love for my work made me set up a professional studio.The love i bear for this art and my dedication towards it, has constantly brought me a step closer to success .</p><br><br><br><br><br><br>
</div>
</section>
<section id="My Captures" style="clear: both;background: black;color: white;">
<h3>MY CAPTURES</h3><br>
<section id="WEDDING SHOOT" style="clear: both;">
<h4>WEDDING SHOOT</h4><br>
<p> Photographs are the Love Language of our era. As for Wedding Photography – what's a better way to to preserve the memories of the most cherished day of your lives together? Wedding shoots are not only gorgeous but also are a legacy of a union, a memento of the birth of an eternal bond that is marriage. As an experienced wedding photographer, the most rewarding part of my work is the smile that lights up on my client's faces seeing the picturesque portrayal of their special day! Indian wedding traditions are truly magnificent – every wedding deserves to be captured by the lens so the memories live forever.</p><br>
<div class="row">
<div class="column" style="display: inline-block;float:left;">
<img src="images/wedding/wedding1.png" alt="picture1" width="100%" height="40%" >
</div>
<div class="column" style="display: inline-block;float:right;">
<img src="images/wedding/wedding2.png" alt="picture2" width="100%" height="40%" >
</div>
</div>
<div class="row">
<div class="column" style="display: inline-block;float:right;text-align: center;">
<img src="images/wedding/wedding3.png" alt="picture1" width="70%" height="70%" >
</div>
<div class="column" style="display: inline-block;text-align: center;">
<img src="images/wedding/wedding4.png" alt="picture2" width="70%" height="70%" >
</div>
</div>
</section>
<section id="PREWEDDING SHOOT" style="clear: both;">
<h4 style="clear:both";>PREWEDDING SHOOT</h4><br>
<p>Pre-wedding shoots are the exciting new trend! It's truly an honor for a photographer to be able to capture the start of a new journey– one that marks the beginning of love and joy!
My sole aim as a pre-wedding photographer is capturing natural moments, expressions, and real emotions shared by the couple. These candid moments are bound to make your album more vibrant!</p><br>
<div class="row">
<div class="column" style="display: inline-block;float:left;">
<img src="images/prewedding/pre5.png" alt="picture1" width="100%" height="10%" >
</div>
<div class="column" style="display: inline-block;float:right;">
<img src="images/prewedding/pre6.png" alt="picture2" width="100%" height="%" >
</div>
</div>
<div class="row">
<div class="column" style="display: inline-block;float:left;">
<img src="images/prewedding/pre3.png" alt="picture1" width="100%" height="40%" >
</div>
</div>
</section>
<section id="NEW BEGINNINGS" style=" clear: both;margin: 0%;">
<h4 style="clear:both"; >NEW BEGINNINGS</h4><br>
<p>Photographing Baby showers is my absolute favorite. These are occasions which are full of celebration as well as emotions – and only an experienced photographer can do justice to both.
It's truly a pleasure to capture such pure moments of love and anticipation – celebration of the upcoming happiness.
Trust me, a baby shower is day that you don't ever want to forget!</p><br>
<div class="row">
<div class="column" style="display: inline-block;float:left;">
<img src="images/bornbaby/baby2.png" alt="picture1" width="100%" height="40%" >
</div>
<div class="column" style="display: inline-block;float:right;">
<img src="images/bornbaby/baby4.png" alt="picture2" width="100%" height="40%" >
</div>
</div>
<div class="row">
<div class="column" style="display: inline-block;float:right;">
<img src="images/bornbaby/baby3.png" alt="picture1" width="100%" height="40%" >
</div>
<div class="column" style="display: inline-block;">
<img src="images/bornbaby/baby5.png" alt="picture2" width="100%" height="40%" ><br>
</div>
</div>
</section>
<section id="MATERNITY SHOOT" style="clear: both;padding-bottom: 90%;margin: 0%;">
<h4 style="clear:both;"; >MATERNITY SHOOT:</h4><br>
<p>Pregnancy is a beautiful phase because it gives a woman the joy and fulfilment which comes from bringing a new life into the world.There are two bodies, one inside the other. Two people live under one skin.Maternity shoots are pleasant ones as seeing the happy couple fills me with mirth and joy. </p>
<div class="row" style="background: black;">
<div class="column" style="display: inline-block;float:left;">
<img src="images/maternityshoot/maternity1.png" alt="picture1" width="80%" height="70%" >
</div>
</div>
<div class="column" style="display: inline-block;float:right;">
<img src="images/maternityshoot/maternity2.png" alt="picture2" width="100%" height="40%" >
</div>
<div class="column" style="display: inline-block;">
<img src="images/maternityshoot/maternity4.png" alt="picture2" width="80%" height="10%" ><br>
</div>
</section>
</section>
<section id ="My Best Projects" style="clear: both;background: #a38fa3;padding-bottom: 75%;">
<h3>WHY ME?</h3><br>
<p>All my projects have been done with utmost hardwork and sheer dedication.A small glimpse of my work is shown below.Hope it brings a smile on your face.</p>
<div class="row">
<div class="column" style="display: inline-block;float:left;">
<img src="images/bornbaby/baby6.png" alt="picture1" width="100%" height="40%" >
</div>
<div class="column" style="display: inline-block;float:right;">
<img src="images/baby/baby1.png" alt="picture2" width="100%" height="40%" >
</div>
</div>
<div class="row">
<div class="column" style="display: inline-block;float:right;">
<img src="images/baby/baby12.png" alt="picture3" width="100%" height="40%" >
</div>
</div>
</section>
<section class="Wherewearelocated" id="Where we are located" style="clear:both;">
<h3 style="text-align: center; ">LOCATE ME:</h3><br>
<div style="text-align: center;"><p>I have two studios of my own namely "Gupta studio" and "A Digital studio".One can get all possible facilities in both our studios,CUSTOMER SATISFACTION is indeed of prime importance to us</p></div>
<div class="maps" style="display: inline-block;float: left; margin: 3%; padding:3%;">
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&callback=myMap" ></script>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3685.232696514448!2d88.34556121492395!3d22.532954340103444!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a02773d082e49c5%3A0x8d25e91b740c8230!2sGupta%20Studio!5e0!3m2!1sen!2sin!4v1593374683973!5m2!1sen!2sin" width="400" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
<div class="maps" style="display: inline-block;margin: 3%;padding: 3%;">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14740.928168436367!2d88.33899512938122!3d22.532978863121503!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a0277b6e5b3ea49%3A0xe02eed87d20313a1!2sA%20Digital%20Studio!5e0!3m2!1sen!2sin!4v1593375867961!5m2!1sen!2sin" width="400" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</section>
<section class ="ContactDetails" id="Reach us">
<h3 style="background: black;">CONTACT ME:</h3><br>
<div style="text-align: center;">We are at Customer Service on all working hours.We are at your service through thick and thin.<br>
Following are the ways one can avail our service:<br></div>
<div style="text-align: center;">
<ol >
<li >Phone number:</li><br>
<i class="fa fa-phone" style="font-size:36px;color:white"></i>
<a href="tel:+9831014758" style="color: white;"> Samir Gupta(manager):9831014758</a><br>
<i class="fa fa-phone" style="font-size:36px;color:white"></i>
<a href="tel:+9831761121" style="color: white;"> Sanjay Gupta(manager):9831761121</a><br>
<i class="fa fa-phone" style="font-size:36px;color:white"></i>
<a href="tel:+9831014758" style="color: white;"> Studio Phone Number:24550562</a><br><br>
<li >Email Id:</li><br>
<a href="mailto:[email protected]" style="color: white;">Samir Gupta:[email protected]</a><br>
</ol>
</div>
<div style="text-align: center;">
<button type="button" onclick="showInput2()" style="border-radius: 12px;padding: 0.8%;background: #A9A9A9 ;color:black; " >CLICK ME</button>
</div>
</section>
<footer style="clear: both;">
<section class ="Reachus" >
<h3 >HAVE A PROJECT?</h3><br>
<div style="text-align: center;padding-bottom: 1%;"> I enjoy doing any kind of photography related work. We are at your service- don't hesitate to fill the form below</div>
<div style="text-align: center;">
<form action="/action_page.php">
<label for="fname"></label><br>
<input type="text" class="contact-form-text" id="fname" name="fname" placeholder="Your name" style="padding: 1%;"><br>
<label for="mail"></label><br>
<input type="email" id="mail" class="contact-form-text" name="email" value="" placeholder="Your email" style="padding: 1%;"><br>
<label for="subject"></label><br>
<input type="text" class="contact-form-text" id="number" name="Number" placeholder="Your phone" style="padding: 1%;"><br>
<label for="subject"></label><br>
<input type="text" class="contact-form-text" id="subject" name="SUB" value="" placeholder="Your subject"style="padding: 1%;"><br>
<label for="Message"></label><br>
<textarea type="text" class="contact-form-text" id="Message" name="message" value="" placeholder="Your message" style="padding: 3%;"></textarea><br>
<input type="submit" value="SEND" style="border-radius: 12px;padding: 0.8%;background: #A9A9A9">
</div>
</form>
</footer>
</section>
<section id="chatme box">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
background-color: #FF0000;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
opacity: 0.8;
position: fixed;
bottom: 23px;
right: 28px;
width: 280px;
font-size: 25px;
}
/* The popup chat - hidden by default */
.chat-popup {
display: none;
position: fixed;
bottom: 0;
right: 15px;
border: 3px solid #f1f1f1;
z-index: 9;
}
/* Add styles to the form container */
.form-container {
max-width: 300px;
padding: 10px;
background-color: white;
}
/* Full-width textarea */
.form-container textarea {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
resize: none;
min-height: 200px;
}
/* When the textarea gets focus, do something */
.form-container textarea:focus {
background-color: #ddd;
outline: none;
}
/* Set a style for the submit/send button */
.form-container .btn {
background-color: #4CAF50;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 100%;
margin-bottom:10px;
opacity: 0.8;
}
/* Add a red background color to the cancel button */
.form-container .cancel {
background-color: red;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
opacity: 1;
}
</style>
<button class="open-button" onclick="openForm()">Chat</button>
<div class="chat-popup" id="myForm">
<form action="/action_page.php" class="form-container">
<h1>Chat</h1>
<label for="msg"><b>Message</b></label>
<textarea placeholder="How Can we help you" name="msg" required></textarea>
<button type="submit" class="btn">Send</button>
<button type="button" class="btn cancel" onclick="closeForm()">Close</button>
</form>
</div>
<script>
function openForm() {
document.getElementById("myForm").style.display = "block";
}
function closeForm() {
document.getElementById("myForm").style.display = "none";
}
</script>
</section>
<div class="container" style="color:white;">
<!-- Social buttons -->
<ul class="list-unstyled list-inline text-center">
<li class="list-inline-item">
<a class="btn-floating btn-fb mx-1">
<i class="fab fa-facebook"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-tw mx-1">
<i class="fab fa-twitter"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-gplus mx-1">
<i class="fab fa-google-plus"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-li mx-1">
<i class="fab fa-linkedin"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-dribbble mx-1">
<i class="fab fa-dribbble"> </i>
</a>
</li>
</ul>
<!-- Social buttons -->
</div>
</section>
</body>
</html>