HTML Elements - Sometimes HTML allows you to leave off end tags


  <ul>
  <li>Tea
  <li>Coffee
    <li>Water
</ul>

or


              <link rel="stylesheet" href="styles/site.css" >

In these cases the "end tags" are "implied" because of what follows.

Learning tip: Always use end tags!