Home
Code Library
Templates
Contact Us
Website Footer Layout 1
Date
: January 10, 2024
Developed By:
Paul Baretto
Footer Layout Template 1
View Source
HTML
CSS
Links
HTML
Copy
<!--fatch the code from github repo Private Repo link: https://github.com/Eshton-NUIT/nuit-library.git --> <footer> <div class="footer-main"> <div class="footer-container"> <div class="newsletter-row"> <div class="newsletter-text"> <p> Subscribe to our <br> newsletter and stay tuned </p> </div> <div class="newsletter-subs-btn"> <form action=""> <input type="email" name="email" id="email" placeholder="Email"> <input type="submit" value="Subscribe"> </form> </div> </div> <div class="footer-logo-links-holder"> <div class="footer-logo-holder"> <div class="logo-box"> <a href="#"> <img src="https://nuitwebtek.com/wp-content/uploads/2024/01/footer-logo.png" alt="Logo"></a> </div> <ul class="social-icons"> <li class="footer-social-icon"> <a href="#"><i class="fa-brands fa-instagram"></i></a> </li> <li class="footer-social-icon"> <a href="#"><i class="fa-brands fa-x-twitter"></i></a> </li> <li class="footer-social-icon"> <a href="#"><i class="fa-brands fa-linkedin-in"></i></a> </li> <li class="footer-social-icon"> <a href="#"><i class="fa-regular fa-envelope"></i></a> </li> </ul> <hr class="lg-none md-none sm-block"> <div class="copyright-container lg-none md-none sm-block"> <p>Copyright © 2023</p> <p>Designed and Developed by <a href="#" target="_blank">NUIT Solutions</a></p> </div> </div> <div class="quick-links-holder"> <div class="quick-links-grid"> <ul> <h4>Need Help</h4> <li><a href="#"> Contact Us</a></li> <li><a href="#"> Track Order</a></li> <li><a href="#"> Return & Refund</a></li> <li><a href="#"> FAQ</a></li> </ul> <ul> <h4>Company</h4> <li><a href="#"> About Us</a></li> <li><a href="#"> Careers</a></li> </ul> <ul> <h4>More Info</h4> <li><a href="#"> T&C</a></li> <li><a href="#"> Privacy Policy</a></li> </ul> <ul> <h4>Address</h4> <li> <a href="#"> <p> EnvatoLevel 13, 2<br> Elizabeth,<br> Victoria<br> 3000,Australia </p> </a> </li> </ul> </div> <hr class="sm-none"> <div class="copyright-container sm-none"> <p>Copyright © 2023</p> <p>Designed and Developed by <a href="#" target="_blank">NUIT Solutions</a></p> </div> </div> </div> </div> </div> </footer>
CSS
Copy
.lg-none{ display: none !important; } .lg-block{ display: block; } .footer-main { --font-josefin: 'Josefin Sans', sans-serif; height: 100vh; background-image: url(https://nuitwebtek.com/wp-content/uploads/2024/01/footer-bg-img.png); background-repeat: no-repeat; background-size: cover; display: flex; align-items: end; position: relative; } .footer-container{ width: 100%; max-width: 1300px; margin-inline: auto; padding-inline: 20px; padding-bottom: 20px; } .newsletter-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; } .newsletter-text p { font-family: var(--font-josefin); font-weight: 700; font-size: 25px; color: #fff; } .newsletter-subs-btn form{ display: flex; gap: 15px; } .newsletter-subs-btn input[type="email"] { color: #fff; padding-left: 10px; font-size: 18px; font-family: var(--font-josefin); font-weight: 400; outline: none; background-color: transparent !important; border: 1px solid #fff; border-radius: 10px; width: 400px; height: 40px; } .newsletter-subs-btn input[type="email"]::placeholder{ color: #fff; } .newsletter-subs-btn input[type="submit"] { outline: none; border: 1px solid #fff; border-radius: 10px; background-color: transparent; padding: 6px 30px; display: flex; justify-content: center; cursor: pointer; transition: 0.2s linear; font-size: 18px; color: #fff; width: 140px; height: 30px; } .newsletter-subs-btn input[type="submit"]:hover{ background-color: #FFD47D; border-color: transparent; } .footer-logo-links-holder{ display: flex; justify-content: space-between; } .footer-logo-holder{ width: 40%; display: grid; gap: 35px; } .logo-box{ max-width: 210px; } .logo-box img{ width: 100%; } .social-icons{ display: flex; gap: 20px; list-style: none; padding-left: 0; } .footer-social-icon a{ display: block; padding: 10px; border: 1px solid #fff; border-radius: 50%; width: 30px; height: 30px; display: grid; align-items: center; justify-content: center; transition: 0.2s linear; color: transparent; } .footer-social-icon a:hover{ background-color: #FFD47D; border-color: transparent; } .footer-social-icon a i{ font-size: 26px; color: #fff; } .quick-links-grid{ display: grid; grid-template-columns: repeat(4,1fr); } .quick-links-holder{ width: 60%; } .quick-links-grid ul{ list-style: none; padding-left: 0; } .quick-links-grid ul h4{ font-family: var(--font-josefin); color: #FFD47D; font-weight: 700; font-size: 20px; margin-bottom: 10px; } .quick-links-grid ul li{ margin-bottom: 7px; } .quick-links-grid ul li a{ font-family: var(--font-josefin); text-decoration: none; color: #fff; font-weight: 400; font-size: 18px; } .quick-links-grid ul li a p{ line-height: 1.3; } .footer-container hr{ height: 2px; background-color: #fff; border: none; } .copyright-container{ display: flex; justify-content: space-between; margin-top: 10px; } .copyright-container p{ color: #fff; font-family: var(--font-josefin); font-weight: 400; font-size: 18px; } .copyright-container p a{ color: #fff; text-decoration: none; } .popup-email-entry{ display: flex; justify-content: center; align-items: top; position: absolute; height: 100%; width: 100%; background-color: #b7b4b436; } @media only screen and (max-width:1020px){ button{ cursor: auto; } .md-none{ display: none; } .footer-main{ background-position: center; } .footer-logo-holder{ align-content: center; } .newsletter-subs-btn input[type="email"]{ width: 330px; } .quick-links-grid{ grid-template-columns: repeat(2,1fr); gap: 30px; padding-left: 20px; } .copyright-container{ flex-direction: column; text-align: center; } } @media only screen and (max-width:480px){ button{ cursor: auto !important; } .sm-block{ display: block; } .sm-none{ display: none; } .footer-main{ background-image: url(https://nuitwebtek.com/wp-content/uploads/2024/01/footer-sm-bg.png); background-position: bottom; } .newsletter-row{ margin-bottom: 40px; flex-direction: column; } .newsletter-text{ margin-bottom: 15px; } .newsletter-text p{ font-size: 20px; } .newsletter-subs-btn form{ flex-direction: column; align-items: center; } .newsletter-subs-btn input[type="email"]{ width: 300px; } .footer-logo-holder, .quick-links-holder{ width: 100%; } .quick-links-grid{ grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 20px; padding-left: 0; } .footer-logo-links-holder{ flex-direction: column-reverse; } .quick-links-grid ul h4{ font-size: 18px; } .quick-links-grid ul li a{ font-size: 16px; } .footer-logo-holder{ gap: 0; } .logo-box{ max-width: none; display: flex; justify-content: center; margin-bottom: 14px; } .social-icons{ justify-content: center; margin-bottom: 10px; } .footer-social-icon a{ width: 25px; height: 25px; } .footer-social-icon a i{ font-size: 20px; } .copyright-container{ text-align: center; } }
Links
Copy
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Footer Layout Template 1</title> <!-- font awosome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <!-- google fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap" rel="stylesheet"> <!-- css --> <link rel="stylesheet" href="assets/css/style.css"> </head>
New
×