Hello, please assess my solution for https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Marking_up_a_letter
My solution: https://codepen.io/gojanpaolo/pen/ZEQLPay
Thanks!
Hello, please assess my solution for https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Marking_up_a_letter
My solution: https://codepen.io/gojanpaolo/pen/ZEQLPay
Thanks!
Hi @gojanpaolo,
This is mostly looking really good. Just a few small bits to point out.
<strong>Email</strong>: no_reply@example.com<br>
You don’t need to <br>
on the end, as it is the last line in the block — there is nothing after it to break on to a new line.
UK<br>
You don’t need to wrap degree symbols in <sup>
elements (e.g. <sup>°</sup>
) — they already appear in the correct placement in the glyph. Try removing the <sup>
elements in these cases and you’ll see what I mean.
“The memoirs of Bill S Preston” could do with being wrapped in a <cite>
element, to make it clear that it is the named source of the quotation.
These are really just small things; well done on a great job!
Thanks @chrisdavidmills for assessing my solution! I updated the code based from your remarks.