Assessment wanted for HTML text basic 2 skill test

Hello all kindly asses my completed HTML text basic 2 skill test .This is my link https://codepen.io/SONGA68/pen/eYRXzJW

This is also correct!

One small remark. Always make sure you indent your code correctly. It makes it much easier to read.

<!-- Bad -->
 <ul>
<li>Cucumber</li>
  <li>Broccoli</li>
  </ul>

<!-- Good -->
<ul>
  <li>Cucumber</li>
  <li>Broccoli</li>
</ul>

Thank you sir for the review of my assessment . I will work on indentation.

1 Like