kr_master
Besthakker,
Kod · HTML149 qator
<!DOCTYPE html>

<html>

<head>

<style>

* {

         box-sizing: border-box;

      }

      html, body {

         margin: 0;

         padding: 0;

      }

      body {

         display: flex;

         min-height: 100vh;

         flex-direction: column;

      }

      main {

         flex: 1 0 auto;

      }

      footer {

         color: #fff;

         background: #333;

         position: relative; /* required to position the copyright at the bottom */

         font-size: 80%;

      }

      .footer-copyright {

         width: 100%;

         height: 40px;

         background: #111;

         /* positions the copyright at the bottom of the footer */

         padding: 10px;

         position: absolute;

         bottom: 0px;

         left: 0px;

      }

      .footer-body {

         margin-bottom: 40px;

         padding: 30px;

      }

      .footer-body > div:first-child {

         font-size: 150%;

      }

      .footer-body ul {

         list-style-type: none;

         margin: 0px;

         padding: 0px;

         text-align: center;

      }

      .footer-body li > a {

         color: white;

         text-decoration: none;

         margin-bottom: 7px;

      }

   </style>

</head>

<body>   

   <header></header>

   <main></main>

   <footer>

      <div class="footer-body">

         <div> Your Brand Here. </div>

         <div>

            <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis interdum dignissim nisl posuere efficitur. </p>

            <ul>

               <li><a href="#"> About </a></li>

               <li><a href="#"> Contact </a></li>

               <li><a href="#"> Terms & Conditions </a></li>

               <li><a href="#"> Privacy Policy </a></li>

            </ul>

         </div>

      </div>

      <div class="footer-copyright">

         © Copyright goes here. 

      </div>

   </footer>