Getting started

Below are the available pre-built Footer Section Components. More components are added overtime.

Footer 1

Link the following stylesheet to your html for this component to display properly:

<link type="text/css" rel="stylesheet" href="css/footer.css">

You should also remove any other Footer Sections related stylesheets.


 <!-- FOOTER SECTION -->
  <footer class="footer">
    <div class="footer__addr">
      <h1 class="footer__logo">Faster<span>Node</span></h1>
          
      <h2>Contact</h2>
      
      <address>
        contact@fasternode.io<br>
      </address>
    </div>
    
    <ul class="footer__nav">
      <li class="nav__item">
        <h2 class="nav__title">Social</h2>

        <ul class="nav__ul">
          <li>
            <a href="https://twitter.com/fasternode_" target="_blank">X</a>
          </li>

          <li>
            <a href="https://www.instagram.com/FasterNode/" target="_blank">Instagram</a>
          </li>
              
          
        </ul>
      </li>
      
      <li class="nav__item nav__item--extra">
        <h2 class="nav__title">Links</h2>
        
        <ul class="nav__ul nav__ul--extra">
          <li>
            <a href="#challenge">Challenge</a>
          </li>
          
          <li>
            <a href="#features">Features</a>
          </li>
          
          <li>
            <a href="#pricing">Pricing</a>
          </li>
          
          <li>
            <a href="#testimonials">Testimonials</a>
          </li>
          
          <li>
            <a href="/docs">Docs</a>
          </li>
          
          <li>
            <a href="/contact">Contact</a>
          </li>
        </ul>
      </li>
      
      <li class="nav__item">
        <h2 class="nav__title">Legal</h2>
        
        <ul class="nav__ul">
          <li>
            <a href="/privacy_policy">Privacy Policy</a>
          </li>
          
          <li>
            <a href="/terms_and_conditions">Terms of Use</a>
          </li>
          
          <li>
            <a href="/gdpr">GDPR</a>
          </li>
        </ul>
      </li>
    </ul>
    
    <div class="legal">
      <p>&copy; 2024 FasterNode. All rights reserved.</p>
      
      
    </div>
  </footer>