Skip to content

Commit efc8aba

Browse files
footer completed
1 parent 3e40ebb commit efc8aba

2 files changed

Lines changed: 96 additions & 12 deletions

File tree

index.html

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,60 @@ <h5>get e-mail updates about out latest shop and <span>special offers</span></h5
364364

365365
<!--footer section-->
366366

367-
<footer></footer>
367+
<footer>
368+
<div id="footer">
369+
<div class="contact">
370+
<a href="indext.html"><img src="images/logo.png" alt="" /></a>
371+
<br> <br>
372+
<br>
373+
<h3>Contact</h3>
374+
<address>
375+
<p><b>Address:</b> Wellington Road, Street 32. San Francisco</p>
376+
<p><b>Phone:</b> Wellington Road, Street 32. San Francisco</p>
377+
<p><b>Hours</b> 10:00 - 18:00. Mon - Sat</p>
378+
</address>
379+
<h3>Follow Us</h3>
380+
<br>
381+
<div class="socials">
382+
<a href="#"><i class="fa-brands fa-facebook-square"></i></a>
383+
<a href="#"><i class="fa-brands fa-youtube"></i></a>
384+
<a href="#"><i class="fa-brands fa-telegram"></i></a>
385+
<a href="#"><i class="fa-brands fa-instagram"></i></a>
386+
<a href="#"><i class="fa-brands fa-twitter"></i></a>
387+
</div>
388+
</div>
389+
<div class="about">
390+
<h3>About</h3>
391+
<br>
392+
<a href="#">About Us</a>
393+
<a href="#">Delivery Information</a>
394+
<a href="#">Privacy Policy</a>
395+
<a href="#">Terms & Conditions</a>
396+
<a href="#">Contact Us</a>
397+
</div>
398+
<div class="myaccount ">
399+
<h3>My account</h3>
400+
<br>
401+
<a href="#">Sign In</a>
402+
<a href="#">View Cart</a>
403+
<a href="#">My Wishlist</a>
404+
<a href="#">Track My Order</a>
405+
<a href="#">Help</a>
406+
</div>
407+
<div class="install">
408+
<h3>Install App</h3>
409+
<br>
410+
<p>From App Store or Google Play</p>
411+
<div class="download">
412+
<a href="#"><img src="images/pay/app.jpg" alt=""></a>
413+
<a href="#"><img src="images/pay/play.jpg" alt=""></a>
414+
</div>
415+
<p>Secured Payment Gateways</p>
416+
<img src="images/pay/pay.png" alt="">
417+
</div>
418+
419+
</div>
420+
</footer>
368421

369422
<script src="script.js"></script>
370423
</body>

style.css

Lines changed: 42 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ span {
309309
justify-content: center;
310310
padding: 25px;
311311
background-size: cover;
312-
backdrop-filter:blur(8%);
312+
backdrop-filter: blur(8%);
313313
}
314314
#banners .big-banners button {
315315
margin-top: 20px;
@@ -357,52 +357,52 @@ span {
357357
padding: 25px;
358358
background-size: cover;
359359
}
360-
#banners .small-banners h2{
360+
#banners .small-banners h2 {
361361
font-size: 25px;
362362
}
363-
#banners .small-banners h5{
363+
#banners .small-banners h5 {
364364
color: #771818;
365365
}
366366

367367
/* newsletter section styles */
368368

369-
#newsletter{
369+
#newsletter {
370370
background-image: url(images/banner/b14.png);
371371
background-repeat: no-repeat;
372-
background-position: 180px;
372+
background-position: 180px;
373373
background-color: #041e42;
374374
height: 160px;
375375
display: flex;
376376
align-items: center;
377377
justify-content: space-between;
378378
padding: 0 75px;
379379
}
380-
#newsletter .newsletter-text h3{
380+
#newsletter .newsletter-text h3 {
381381
color: white;
382382
font-size: 30px;
383383
padding: 0 0 15px 0;
384384
}
385-
#newsletter .newsletter-text h5{
385+
#newsletter .newsletter-text h5 {
386386
color: rgb(151, 151, 151);
387387
font-size: 17px;
388388
}
389-
#newsletter .newsletter-text h5 span{
389+
#newsletter .newsletter-text h5 span {
390390
color: rgb(216, 182, 29);
391391
}
392-
#newsletter .form input{
392+
#newsletter .form input {
393393
padding: 20px;
394394
width: 350px;
395395
height: 56px;
396396
background-color: #d1d0d0;
397397
border-radius: 6px 0 0 6px;
398398
font-size: 18px;
399-
399+
400400
border: none;
401401
outline: none;
402402
margin-right: -4px;
403403
margin-top: 1px;
404404
}
405-
#newsletter .form button{
405+
#newsletter .form button {
406406
margin-left: 0;
407407
padding: 20px;
408408
border: none;
@@ -413,3 +413,34 @@ span {
413413
border-radius: 0 6px 6px 0;
414414
cursor: pointer;
415415
}
416+
417+
/* footer section styles */
418+
419+
#footer{
420+
display: flex;
421+
align-items:flex-start;
422+
justify-content: space-between;
423+
padding: 75px;
424+
background-color: #ececec;
425+
}
426+
#footer div{
427+
}
428+
#footer p, #footer a{
429+
color: rgb(109, 109, 109);
430+
text-decoration: none;
431+
}
432+
#footer a:hover{
433+
color:#088178;
434+
}
435+
#footer .about a{
436+
display: block;
437+
padding:8px 0;
438+
}
439+
#footer .myaccount a{
440+
display: block;
441+
padding:8px 0;
442+
}
443+
#footer .download img{
444+
border: 1px solid #08817969;
445+
border-radius: 7px;
446+
}

0 commit comments

Comments
 (0)