File size: 1,236 Bytes
ebeecb8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!-- 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>&copy; 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>-->