kr_master
Besthakker,
  1. <!DOCTYPE html>
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html, body {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. body {
  10. display: flex;
  11. min-height: 100vh;
  12. flex-direction: column;
  13. }
  14. main {
  15. flex: 1 0 auto;
  16. }
  17. footer {
  18. color: #fff;
  19. background: #333;
  20. position: relative; /* required to position the copyright at the bottom */
  21. font-size: 80%;
  22. }
  23. .footer-copyright {
  24. width: 100%;
  25. height: 40px;
  26. background: #111;
  27. /* positions the copyright at the bottom of the footer */
  28. padding: 10px;
  29. position: absolute;
  30. bottom: 0px;
  31. left: 0px;
  32. }
  33. .footer-body {
  34. margin-bottom: 40px;
  35. padding: 30px;
  36. }
  37. .footer-body > div:first-child {
  38. font-size: 150%;
  39. }
  40. .footer-body ul {
  41. list-style-type: none;
  42. margin: 0px;
  43. padding: 0px;
  44. text-align: center;
  45. }
  46. .footer-body li > a {
  47. color: white;
  48. text-decoration: none;
  49. margin-bottom: 7px;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <main></main>
  55. <div class="footer-body">
  56. <div> Your Brand Here. </div>
  57. <div>
  58. <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis interdum dignissim nisl posuere efficitur. </p>
  59. <ul>
  60. <li><a href="#"> About </a></li>
  61. <li><a href="#"> Contact </a></li>
  62. <li><a href="#"> Terms & Conditions </a></li>
  63. <li><a href="#"> Privacy Policy </a></li>
  64. </ul>
  65. </div>
  66. </div>
  67. <div class="footer-copyright">
  68. © Copyright goes here.
  69. </div>
  70. </footer>