Assessment wanted for Marking up a letter from a newcomer

Hello! I’ve been learning Web for a week on MDN. :smiley:

  • Wanted to know if everything is as expected in the Marking Up a Letter Assessment.
  • Assessment Link: Here
  • Task Link: Here

Thanks a lot!

Hi @Zigfried and welcome to the community :wave:

Great to hear you are learning on MDN! I hope you have fun.
Congratulations! You did a great job on this task. :medal_sports:
The letter looks like requested. I have only some small remarks:

  • Every HTML file should have <!DOCTYPE html> on the first line. This is to indicate to the browser that we are working with a modern version of HTML.
  • There shouldn’t be spaces in front of <br>. In this example it doesn’t matter, but could lead to problems another time.
    <!-- wrong -->
    <strong>Dr. Eleanor Gaye</strong> <br>
    Awesome Science faculty <br>
    <!-- correct -->
    <strong>Dr. Eleanor Gaye</strong><br>
    Awesome Science faculty<br>
    
  • Links should have title attributes. Those titles are displayed when we hover over links before we click them.
  • To mark a word with strong emphasis it’s better to use <em> than <i>.
  • Some <abbr> are missing the title attribute (BC and Esq) and therefore we can’t see the written out version when hovering.

As you see there aren’t any big problems. I just wrote about every little detail I could find. :slightly_smiling_face: Overall very good :+1:
I hope you keep learning on MDN and I would be happy to look at more tasks. If you have any questions feel free to ask.

Have a nice day!
Michael

1 Like

Wow! :star_struck:Crazy! I’m so happy!
@mikoMK Thanks for your reply!
I really learned a lot! :stuck_out_tongue_closed_eyes:

1 Like

Great to hear :grin: