Assessment needed for Mark up a letter .I keep getting 3 errors from the validator

This is the link to my assessment https://codepen.io/SONGA68/pen/ExXJEMQ

Hi @otienobyrone68 :wave:

Very good! Congratulations!

Here are some small things I found:

  • The <p> elements inside the addresses are not needed (but valid)
  • The <br> at the end of the last line inside the addresses is not needed as <address> automatically breaks the line (but valid)
  • The datetime has to be “yyyy-mm-dd”. When you add the missing zeros the first two validator errors go away:
    <time datetime="2016-09-09">
    <time datetime="2017-05-02">
    
  • The cite attribute of <q> can only be used for an URL of the source. That’s why the validator says “space is not allowed”. We don’t need it here. You have to wrap the reference of the quote in a <cite> element:
    <p>University of Awesome motto: <q>Be awesome to each other.</q> -- <cite>The memoirs of Bill S Preston, <abbr title="Esquire">Esq</abbr></cite></p>
    

Keep up the good work!
Michael