body {
  background-color: powderblue;
}
h1 {
  color: red;
}
p {
  color: blue;
}

<style>
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}
</style>

<div class="footer">
  <p>Copyright k1cew.com 2024</p>
</div>
