Assessment wanted for advanced HTML text skill test 1 EVALUACION

Task 01:

Task 02:

Test:

Thank

Nice work @Sarai_Atoche_Pascual

I have just one remark. You used the <cite> tag on the word “accessible” inside the <blockquote>. Generally, we put it around the name of the source after the quote itself. In my opinion it would be better to write something like this after the quote:

<cite>
  <a href="https://developer.mozilla.org/en-US/docs/Learn/Accessibility">
    Accessibility Page on MDN Web Docs
  </a>
</cite>

Since we shouldn’t alter the text in this exercise, the proper solution would be to use the cite attribute on the <blockquote>. It’s specifically intended for an URL where the quote can be found:

<blockquote cite="https://developer.mozilla.org/en-US/docs/Learn/Accessibility">
  ...
</blockquote>

See you,
Michael

1 Like

Muchas gracias Miguel

De nada Sarai. :grin:

1 Like