Spaces:
Sleeping
Sleeping
| <!-- footer.html --> | |
| <!-- | |
| This is the HTML code for the footer section of a web page. | |
| It displays the version number and copyright information. | |
| HTML Structure: | |
| - The footer element has a class of "main-footer". | |
| - Inside the footer, there is a div element with classes "float-right" and "d-none d-sm-block". | |
| - Inside the div, there is a bold tag (<b>) displaying the version number. | |
| - After the div, there is a strong tag (<strong>) displaying the copyright information. | |
| - The copyright information includes the year and a link to the company's website. | |
| Example Usage: | |
| <footer class="main-footer"> | |
| <div class="float-right d-none d-sm-block"> | |
| <b>Version</b> 3.0.5 | |
| </div> | |
| <strong>© 2023 <a href="https://yourcompany.com">Your Company</a>.</strong> All rights reserved. | |
| </footer> | |
| --> | |
| <footer class="main-footer" style="position: absolute; bottom: 0; width: 100%; color: black; text-align: right; padding-right:245px ;"> | |
| <div class="container-fluid"> | |
| <a href="https://redmindtechnologies.com" target="_blank" style="color: black; text-decoration: none;">Visit Redmind Technologies at https://redmindtechnologies.com</a> | |
| </div> | |
| </footer> | |