materialize
  1. materialize-footer

Materialize Footer

The Materialize Footer is a section that is located at the bottom of a web page. It is used to display important information about the website, such as copyright information, contact details, links to social media accounts, and other necessary information.

Syntax

The Materialize Footer can be created using the HTML <footer> tag. To use Materialize's predefined CSS classes for styling the Footer, you can add the class page-footer to the <footer> tag.

<footer class="page-footer">
    <!-- Footer content goes here -->
</footer>

You can also customize the look of the footer by using Materialize's CSS classes.

Use and Importance

The Materialize Footer is an important component of a website as it provides users with vital information for engaging with your website and also acts as a navigation aid for users who have reached the end of the page.

In Materialize, the Footer is highly customizable and can provide a great visual impression to your users. You can add images, icons, and other visual components to give your website a unique and professional look.

Example

<footer class="page-footer">
  <div class="container">
    <div class="row">
      <div class="col l6 s12">
        <h5 class="white-text">Contact Us</h5>
        <p class="grey-text text-lighten-4">1234 Main St, Anytown USA</p>
        <p class="grey-text text-lighten-4">Phone: (555) 555-1212</p>
        <p class="grey-text text-lighten-4">Email: info@example.com</p>
      </div>
      <div class="col l4 offset-l2 s12">
        <h5 class="white-text">Links</h5>
        <ul>
          <li><a class="grey-text text-lighten-3" href="#!">Home</a></li>
          <li><a class="grey-text text-lighten-3" href="#!">About Us</a></li>
          <li><a class="grey-text text-lighten-3" href="#!">Services</a></li>
          <li><a class="grey-text text-lighten-3" href="#!">Contact Us</a></li>
        </ul>
      </div>
    </div>
  </div>
</footer>

Summary

The Materialize Footer is a key component of any website. It allows users to access critical information and links related to the website and also functions as a navigation aid. Materialize's predefined CSS classes make it easy to create a visually appealing and customizable Footer.

Published on: