Assessment request for "Marking up a letter"

Hey, everyone!

This is my version of “Marking up a letter” task: https://jsfiddle.net/64g1tz07/3/

Would love to get some feedback on it!

Link to the task: https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Marking_up_a_letter

Hello @dudebro and welcome to the community :wave:

You have done a very good job. Congratulations!
Some small remarks:

  • I wouldn’t use the id attributes as they are not necessary in this context
  • In the “Exotic dance moves” section you could use a description list instead of an unordered list as this is more semantic: <dl>
  • You should wrap both addresses completely with <address> tags. This way you could get rid of some <div> and <p> tags and therefore the markup becomes more meaningful (see below)
<address class="sender-column">
  <strong>Dr. Eleanor Gaye</strong><br>
  Awesome Science faculty<br>
  University of Awesome<br>
  Bobtown, CA 99999,<br>
  USA<br>
  <strong>Tel</strong>: 123-456-7890<br>
  <strong>Email</strong>: no_reply@example.com
</address>

<p class="sender-column"><time datetime="2016-01-20">20 January 2016</time></p>

<address>
  <strong>Miss Eileen Dover</strong><br>
  4321 Cliff Top Edge<br>
  Dover, CT9 XXX<br>
  UK
</address>

If you have any further questions, feel free to ask.

Good luck on your journey!
Michael

Remarks noted @mikoMK , thank you very much for the assessment :slight_smile:

1 Like