Answers for "how tp style my footer in html"

4

html footer

<footer>
  <p>Author: Hege Refsnes<br>
  <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
Posted by: Guest on August-31-2021
-2

footer css

footer {
    clear: both;
    position: relative;
    height: 200px;
    margin-top: -200px;
}
Posted by: Guest on December-16-2021

Browse Popular Code Answers by Language