Assessment Evaluation

Assessment wanted for Form structure 1 skill test

Hello, I have completed the form structure 1 skill test and would like to be accessed on my codes, here is the link below;

Here is the assessment page link,

Thanks.

Hi @FavOrite_Female_Techie and welcome to the community :wave:

Congratulations! You did a great job on this task.
There’s only one small mistake. Before the comment label you wrote </p> instead of <p>.

On a more general note: I recommend using consistent indentation to improve readability.

<!-- more difficult to read -->
<fieldset>
<legend>Personal details</legend>
 <p> <label for="name">Name:</label>
  <input type="text" id="name" name="name">
</p>
...
</fieldset>

<!-- easier to read -->
<fieldset>
  <legend>Personal details</legend>
  <p>
    <label for="name">Name:</label>
    <input type="text" id="name" name="name">
  </p>
  ...
</fieldset>

I hope that helps!

Have a nice day,
Michael