Author Topic: Creating a Footer using HTML and CSS  (Read 134 times)

Offline jdaniele

  • Administrator
  • Member
  • *****
  • Posts: 251
    • View Profile
Creating a Footer using HTML and CSS
« 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>
=========================
"The true sign of intelligence is not knowledge but imagination." - Albert Einstein

 

Free Web Hosting