Dennis
8/1/2019 - 8:17 AM

CSS hover

<style type="text/css">
  /* EXTRA Animations */
  .hofbtn {
    transition: ease-out 0.1s;
    background-color: #EF7926;
  }
  .hofbtn:hover {
    transition: ease-in 0.1s;
    background-color: #bf601e;
  }
 
</style>