Hi, I have completed another assessment, can I please be assessed?
Link to task: https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Marking_up_a_letter
Link to my code: https://jsfiddle.net/kevin_hebert/aoLfdkbj/30/
Thank you for assessing me! I am going to try to complete the entire training.
Kevin Hebert
Hello @kevin_hebert
you doing great well done here my notice :
- you can put the css(style code ) in the css panel in jsfiddle
- for the telephone there also special use case for it using the
<a>
element check this one <a>: The Anchor element - HTML: HyperText Markup Language | MDN also check the example at the top of the page you would see live example
- no need to add strong to and h1/h2 as it bold by default
- this
-- The memoirs of Bill S Preston,
is the cite of the <q>
element so wrap it with <cite>
and put it at the end of the <q>
that’s the spirit 
hope i did not miss anything else and have a nice day 
1 Like
Thanks so much for assisting here @justsomeone!
I believe the use of the inline quote element is correct here. “Be awesome to each other.” is the quote that is being cited from the memoirs of Bill S Preston (have a look at the interactive example here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q#try_it).
One thing to note though is that in the code below, I would remove the title
attribute is it duplicates the text that is already part of the link. So you should change:
<a href="http://www.example.com" title="Exotic Dance Research Page">exotic dance research page.</a>
to:
<a href="http://www.example.com">exotic dance research page.</a>
–
Schalk
Staff Community Manager - MDN Web Docs
2 Likes
thanks for you @schalkneethling
nice catch boss 
and have a nice day both of you 
2 Likes