FlintSable
9/6/2017 - 3:43 AM

linking css

linking

* {
  style: everything!
}
<style>
<!--goes right in-->
    * {
      font-family: 'Georgia', 'Times',
        serif;
    }
    
    a {
      color: SeaGreen;
      text-decoration: none;
    }
    
    img {
      border-radius: 100%;
    }

</style>
/*Separated by comma*/
p,
h5 {
  font-family: Georgia;
}

h5 {
  color: rebeccapurple !important;
}