ShapeYourPath
(current)
Run Code
Live Code Editor- Materialize CSS Fixed Footer
Source Code
<!DOCTYPE html> <html lang="en"> <head> <title>Materialize CSS Footer</title> <meta name="viewport" content="width = device-width, initial-scale = 1" /> <meta name="description" content=""> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> <!-- Compiled and minified CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" /> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> <!-- Compiled and minified JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> <style type="text/css"> p { font-size: 18px; } h1 { font-size: 35px; } </style> </head> <body> <div class="container"> <h1>Materialize CSS Footer</h1> <p>It is used at the end of the web page and it consists of a lot of site navigation links.</p> </div> <footer class="page-footer"> <div class="container"> <div class="row"> <div class="col l6 s12"> <h5 class="white-text">Footer Content</h5> </div> <div class="col l4 offset-l2 s12"> <h5 class="white-text">Custom Links</h5> <ul> <li><a class="grey-text text-lighten-3" href="#!">Link 1</a></li> </ul> </div> </div> </div> <div class="footer-copyright"> <div class="container"> © 2021 Copyright Text <a class="grey-text text-lighten-4 right" href="#!">More Custom Links</a> </div> </div> </footer> </body> </html>
Output :
Running