JDT Systems

Categories => Web Coding => Topic started by: jdaniele on March 18, 2018, 12:40:55 PM

Title: Creating a Footer using HTML and CSS
Post by: jdaniele on March 18, 2018, 12:40:55 PM
The part that's the most important is the CSS part:
=========================
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: gray;
    color: #5c5c5c;
    text-align: center;
}
=========================

Now the part that you see is the DIV tag that will be in the body. The important part there is classifying it.
=========================
<div class="footer">
  Auther: Name<br />
  Address: location
</div>
=========================
Free Web Hosting