HTMLify
index_socials.html
Views: 419 | Author: cody
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 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Footer 04 Example</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Inter font loading --> </head> <body> <!-- body start --> <section class="subscription-section"> <div class="subscription-wrapper"> <div class="subscription__description"> <h2>Join 10k+ other readers!</h2> <p>Stay up to date with our news and articles</p> </div> <form class="subscribe-form"> <input type="email" spellcheck="false" placeholder="Your Email"> <button type="submit"> Subscribe </button> </form> </div> </section> <footer> <div class="footer-wrapper"> <div class="social-wrapper"> <div class='social-links'> <ul> <li> <a href="#" title="Instagram"> <img src="assets/instagram.svg" alt='Instagram'> </a> </li> <!-- more social links --> </ul> </div> </div> <div class="footer-columns"> <div class="footer-links"> <div class="footer-logo"><!-- svg logo --></div> <section> <h3>Product</h3> <ul> <li><a href="#" title="API">API</a></li> <!-- more links --> </ul> </section> <!-- more link columns --> </div> </div> <div class="footer-bottom"> <div class="footer-description"> <h3>Elevate your tech skills</h3><p>Develop and design platforms with ease<p> </div> <small>© Atheros Intelligence Ltd. <span id="year"></span>, All rights reserved</small> </div> </div> </footer> <script> document.getElementById("year").innerHTML = new Date().getFullYear(); </script> <!-- end of body --> </body> </html> |