What I tried: I tried to mark up all the letter as requested.
To do:
-I couldn’t see the BC abbreviation. Wondering how to look up in HTML.
-And I’m not sure I marked up the citation well. (line 82)
_ Assessment of the work
Great job on this task, @sam_wina2
Some small improvements:
-
<address class="value of sender-column">
should just be<address class="sender-column">
(You are adding the non-existent classes “value” and “of”) -
<time>
is not part of the address and should therefore be outside (You will need to wrap it with a<p class="sender-column">
for it to still be on the right side) - BC: You can search the HTML with CTRL+F. It’s on line 71 at “Polynesian chicken dance”
- We only use the
cite
attribute on<q>
when we want to use an URL to the source. In this case the source is right after the quote and we need to just wrap that with<cite>
.
I hope that helps! Feel free to ask questions. If you decide to make those improvement I will happily have another look.
Cheers,
Michael