-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
608 lines (563 loc) · 19.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>2Rings project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<style>
.container {
padding: 80px 120px;
}
.container-c{
max-width: 1170px;
padding-left: 150px;
}
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.pic-border {
border: 25px solid rgb(255, 255, 255);
width: 100%;
height: 80%;
}
.plane{
background-image: url('images/plan_bg.png');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
padding-top: 90px;
}
.titlepage {
text-align: center;
padding-bottom: 40px;
}
.carousel-indicators li {
border-width: 2px;
border-color: black;
background-color:lightgray;
width: 1.5rem;
height: 1.5rem;
}
.carousel-indicators li.active {
border-width: 2px;
border-color: black;
width: 2rem;
height: 2rem;
}
.caro-main li{
background-color:black;
border: transparent;
width: 3rem;
height: 3rem;
border-radius: 50%;
}
.caro-main li.active{
background-color:coral;
border: transparent;
width: 3rem;
height: 3rem;
border-radius: 50%;
}
.about {
background: url(images/about_bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
margin-top: 90px;
}
.read_more {
font-size: 14px;
background-color: #413c31;
color: #fff;
padding: 10px 0px;
width: 100%;
max-width: 157px;
text-align: center;
display: inline-block;
transition: ease-in all 0.5s;
font-weight: 500;
border-radius: 10px;
height: 43px;
}
footer {
background-color: #252525;
color: #f5f5f5;
padding: 20px;
}
.navbar {
margin-bottom: 0;
background-color: transparent;
z-index: 9999;
border: 0;
font-size: 17px !important;
line-height: 1.42857143 !important;
border-radius: 0;
}
.navbar-brand{
font-weight: bold;
color: #fff!important;
}
.navbar li a, .navbar .navbar-brand {
color: black !important;
margin-left: 50px;
}
.navbar-nav li a:hover, .navbar-nav li.active a {
color: #fff !important;
}
.navbar-default .navbar-toggle {
border-color: transparent;
color: #fff !important;
}
.main-carousel{
text-align: left;
margin-left: 100px;
margin-right: 300px;
margin-bottom: 100px;
margin-top: 50px;
}
.blog {
padding-top: 90px;
}
.blog_bg {
background: #fff;
box-shadow: 0 0px 21px -4px #ddd;
}
.blog_img figure {
margin: 0;
}
.blog_img figure img {
width: 100%;
}
.blog_img span {
position: absolute;
top: 43%;
right: 14px;
z-index: 9999;
background: #e6615a;
padding: 15px 27px;
font-weight: bold;
color: #fff;
font-size: 20px;
line-height: 24px;
}
.marriage_text {
text-align: left;
padding: 20px 25px 20px 0px;
}
.marriage_text span {
color: #c1c2c3;
font-size: 17px;
line-height: 20px;
padding-bottom: 25px;
display: block;
}
.marriage_text h3 {
color: #252525;
font-size: 24px;
line-height: 25px;
font-weight: bold;
padding-bottom: 30px;
}
.marriage_text p {
color: #202020;
font-size: 17px;
font-weight: lighter;
line-height: 30px;
padding-bottom: 43px;
}
.marriage_text h4 {
color: #202020;
font-size: 17px;
line-height: 20px;
font-weight: bold;
}
.padd_right {
padding-left: 30px;
}
.marriage_text h4 strong:hover {
color: #e6615a;
cursor: pointer;
padding-bottom: 0;
}
.margin_bottom30 {
margin-bottom: 30px;
}
.d_flex {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.blog-m{
padding: 30px 50px;
}
.contact {
background: #252525;
padding-bottom: 20px;
margin-top: 160px;
}
.soc_bg {
background: #fff;
padding: 50px 30px;
box-shadow: 0px -10px 18px -7px #ddd;
margin-top: -72px;
}
ul.lacation {
display: flex;
align-items: center;
justify-content: end;
}
ul.lacation li {
color: #e6615a;
font-size: 17px;
font-weight: 500;
padding-right: 34px;
line-height: 20px;
display: flex;
align-items: center;
}
.contact .titlepage {
text-align: left;
}
.contact .titlepage h2 {
color: #fff;
}
.contact .titlepage h2::before {
background: inherit;
}
.main_form .contactus {
border: inherit;
border-bottom: #fff solid 1px;
margin-bottom: 25px;
width: 100%;
height: 44px;
background: transparent;
color: #818383;
font-size: 17px;
font-weight: 600;
}
.main_form .textarea {
border: inherit;
border-bottom: #fff solid 1px;
margin-bottom: 25px;
width: 100%;
background: transparent;
color: #818383;
font-size: 17px;
font-weight: 600;
padding: 37px 0px 0 0px;
height: 76px;
}
.main_form .send_btn {
font-size: 17px;
transition: ease-in all 0.5s;
background-color: #e6615a;
text-transform: uppercase;
color: #fff;
padding: 8px 0px;
max-width: 137px;
width: 100%;
border-radius: 40px;
display: block;
margin-top: 10px !important;
font-weight: 600;
}
.main_form .send_btn:hover {
background-color: #fff;
transition: ease-in all 0.5s;
color: #e6615a;
}
</style>
<body>
<!--navbar and carousel-->
<div id="myCarousel" class="carousel slide text-center" data-ride="carousel" style="background-image: url(images/banner2.jpg);background-size: 100% 100%;">
<nav class="navbar navbar-default navbar-top" style="padding:30px 100px">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">2Rings</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#contact">Home</a></li>
<li><a href="#about" class="active">About</a></li>
<li><a href="#services">Service</a></li>
<li><a href="#portfolio">Blog</a></li>
<li><a href="#pricing">Contact US</a></li>
<li><a href="#"><span class="glyphicon glyphicon-search"></span></a></li>
</ul>
</div>
</div>
</nav>
<!-- Indicators -->
<ol class="carousel-indicators caro-main" style="transform: rotate(90deg); position: relative; bottom: -180px; margin-left: 60px;">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="main-carousel">
<h3 style="color: black; margin-bottom: 70px; font-size: x-large;"><strong>Wedding <span style="color: coral;">Couple</span></strong></h3>
<p style="color: black; margin-bottom: 100px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut laboreLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>
<button type="button" class="btn" style="margin-top: -40px; width: 190px; height: 60px; border-radius: 50px; background-color: #2d2d30; color: #fff;">Get A Quote</button>
</div>
</div>
<div class="item">
<div class="main-carousel">
<h3 style="color: black; margin-bottom: 70px; font-size: x-large;"><strong>Wedding <span style="color: coral;">Couple</span></strong></h3>
<p style="color: black; margin-bottom: 100px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut laboreLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>
<button type="button" class="btn" style="margin-top: -40px; width: 190px; height: 60px; border-radius: 50px; background-color: #2d2d30; color: #fff;">Get A Quote</button>
</div>
</div>
<div class="item">
<div class="main-carousel">
<h3 style="color: black; margin-bottom: 70px; font-size: x-large;"><strong>Wedding <span style="color: coral;">Couple</span></strong></h3>
<p style="color: black; margin-bottom: 100px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut laboreLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>
<button type="button" class="btn" style="margin-top: -40px; width: 190px; height: 60px; border-radius: 50px; background-color: #2d2d30; color: #fff;">Get A Quote</button>
</div>
</div>
</div>
</div>
<div class="container-fluid" style="text-align: center; z-index: 100; position: relative;">
<hr style="border-top: 2px solid black; width: 50%; margin-top: -2px;"/>
<img src="images/play.png" style="margin-top: -70px;">
</div>
<!-- Plane Part -->
<div class="container text-center plane">
<img src="images/ring.png" style="width: 55px; height: 51px;">
<h2><strong>Our Plane</strong></h2>
<p>Velit ullamco cillum in consequat ex aliquip occaecat.</p>
<br>
<div class="container-fluid text-center">
<div class="row text-center">
<div class="col-sm-4">
<div style="background-color: khaki; min-height: 400px; margin-bottom: 50px;">
<img src="images/daisy-1403041_1280.png" class="pic-border" alt="daisy">
<p style="color: black;"><strong><br><br>FLOWER DECORATIONS</strong></p>
<p style="color: white; height:max-content;">Nisi fugiat incididunt commodo in eu consectetur anim id.</p>
</div>
</div>
<div class="col-sm-4">
<div style="background-color: khaki; min-height: 400px; margin-bottom: 50px;">
<img src="images/pink-wine-1964457_1280.png" class="pic-border" alt="pink-wine">
<p><strong style="color: black;"><br><br>BEST RESTAURANT</strong></p>
<p style="color: white; height:max-content">Est eu aute Lorem ea commodo esse pariatur ea dolore.</p>
</div>
<button type="button" class="btn btn-danger" style="margin-top: -120px; width: 125px;">Read More</button>
</div>
<div class="col-sm-4">
<div style="background-color: khaki; min-height: 400px; margin-bottom: 50px;">
<img src="images/wedding-1770860_1280.png" class="pic-border" alt="wedding">
<p style="color: black;"><strong><br><br>HONEYMOON</strong></p>
<p style="color: white;">Irure proident do esse proident in.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Groomsmen Part -->
<div class="container text-center">
<div class="row">
<img src="images/ring.png" style="width: 55px; height: 51px;">
<h2><strong>Bridesmaids And Groomsmen</strong></h2>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod t dolor in reprehenderit in voluptate </span>
</div>
<div class="row" style="margin-top: 50px;">
<div class="col-md-4">
<img src="images/ber_img.jpg" alt="#" style="width: 95%;">
<h3> Voluptate </h3>
</div>
<div class="col-md-4" style="margin-top: 130px; text-align: center;">
<img src="images/ber_img1.jpg" alt="#" style="width: 95%;">
<h3> Voluptate </h3>
</div>
<div class="col-md-4">
<img src="images/ber_img2.jpg" alt="#" style="width: 95%;">
<h3> Voluptate </h3>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<img src="images/round.png">
</div>
</div>
<!-- about part -->
<div class="about">
<div class="container">
<div class="row d_flex">
<div class="col-md-5">
<div style="margin-top: 50px;">
<img src="images/ring.png" style="width: 55px; height: 51px;">
<h2><strong>About Our Company</strong></h2>
<p style="margin-top: 50px; margin-bottom: 50px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco</p>
<a class="read_more" href="">Read More</a>
</div>
</div>
<div class="col-md-7">
<div class="about_img">
<figure><img src="images/about.png" style="width: 100%;" alt="#"></figure>
</div>
</div>
</div>
</div>
</div>
<!-- from the blog -->
<div class= "container-fluid text-center" style="margin-top: 80px;">
<img src="images/ring.png">
<h2><strong>FROM THE BLOG</h2>
<div class="row blog-m">
<div class="col-sm-12">
<div class="blog_bg" style="margin-bottom: 30px;">
<div class="row d_flex">
<div class="col-md-6">
<div class="blog_img">
<figure><img src="images/blog_img1.jpg" alt="#" style="width: 100%;"></figure>
<span>06<br>Feb</span>
</div>
</div>
<div class="col-md-6">
<div class="marriage_text">
<span>Post by : Marriage </span>
<h3>Tempor incididunt ut labore et dolore</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore</p>
<h4><strong>Like</strong> <strong class="padd_right">Comment</strong></h4>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="blog_bg">
<div class="row d_flex">
<div class="col-md-6">
<div class="blog_img">
<figure><img src="images/blog_img2.jpg" alt="#" style="width: 100%;"></figure>
<span>06<br>Feb</span>
</div>
</div>
<div class="col-md-6">
<div class="marriage_text">
<span>Post by : Marriage </span>
<h3>Tempor incididunt ut labore et dolore</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore</p>
<h4><strong>Like</strong> <strong class="padd_right">Comment</strong></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- What says Part -->
<div class= "container-fluid text-center" style="margin-top: 80px;">
<img src="images/ring.png">
<h2><strong>What Is Says Our GROOMS</h2>
<div id="myCarousel" class="carousel slide text-center" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div>
<img src="images/saya.png" style="margin-top: 50px; margin-bottom: 30px;">
<h3 style="color: black; margin-bottom: 30px;"><strong>Jacksmith sand</strong></h3>
<p style="color: black; margin-bottom: 100px;">There are many variations of passages of Lorem Ipsum available, but the<br>majority have suffered alteration in some form</p>
</div>
</div>
<div class="item">
<div>
<img src="images/saya.png" style="margin-top: 50px; margin-bottom: 30px;">
<h3 style="color: black; margin-bottom: 30px;"><strong>Jacksmith sand</strong></h3>
<p style="color: black; margin-bottom: 100px;">There are many variations of passages of Lorem Ipsum available, but the<br>majority have suffered alteration in some form</p>
</div>
</div>
<div class="item">
<div>
<img src="images/saya.png" style="margin-top: 50px; margin-bottom: 30px;">
<h3 style="color: black; margin-bottom: 30px;"><strong>Jacksmith sand</strong></h3>
<p style="color: black; margin-bottom: 100px;">There are many variations of passages of Lorem Ipsum available, but the<br>majority have suffered alteration in some form</p>
</div>
</div>
</div>
</div>
</div>
<!-- Contact -->
<div class="contact">
<div class="container-c">
<div class="row">
<div class="col-sm-12">
<div class="soc_bg">
<div class="row">
<div class="col-md-3">
<a href="index.html"> <img class="logo_fooetr" src="images/logo_footer.png" alt="#"></a>
</div>
<div class="col-md-9">
<ul class="lacation">
<li>Gb road 123 london Uk </li>
<li>G(+01) 123456789012</li>
<li>[email protected]</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row d_flex">
<div class="col-md-6">
<div class="col-md-12">
<div class="titlepage">
<h2>Contact Us</h2>
</div>
</div>
<form id="request" class="main_form">
<div class="row">
<div class="col-md-12">
<input class="contactus" placeholder="Name" type="type" name="Name">
</div>
<div class="col-md-12">
<input class="contactus" placeholder="Phone number" type="type" name="Phone number">
</div>
<div class="col-md-12">
<input class="contactus" placeholder="Email" type="type" name="Email">
</div>
<div class="col-md-12">
<textarea class="textarea" placeholder="Message" type="type" message="Name"></textarea>
</div>
<div class="col-md-6 col-sm-6">
<button class="send_btn">Send</button>
</div>
</div>
</form>
</div>
<div class="col-md-6">
<div class="map_main">
<div class="map-responsive">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3240.3909642919466!2d51.39672491559735!3d35.69199553698845!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3f8e0107a2abfbed%3A0x842e2f66bfb1e214!2z2K_Zgdiq2LEg2LHZh9io2LEg2KzZhdmH2YjYsduMINin2LPZhNin2YXbjCDYp9uM2LHYp9mG!5e0!3m2!1sen!2s!4v1675026117211!5m2!1sen!2s" width="600" height="378" frameborder="0" style="border:0; width: 100%;" allowfullscreen=""></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer -->
<footer class="text-center">
<p>© 2023 All Rights Reserved. MSDOfficial</p>
</footer>
</body>
</html>