I rlly need help

Loving <input name="personality" type="checkbox"
</label>

<label>
 Moody
 <input name="personality" type="checkbox"

</label>

<label>

Withdrawn
<input name=“personality” type=“checkbox”

*

Yeah it looks like it.

I’m not entirely sure what your question is but HTML checkboxes have the following syntax:

<input type="checkbox" name="yourNameAttribute" />

Make sure to close the tag.

Hello,
We need more information about your code.
From the challenge press the button “Get Help”, then “Ask for Help” and Create a post on the forums asking for help.
That way we know the challenge you need help with and can view your whole code.
Other than that, as jsdisco said right before me, what you show us is a missing closing tag

Summary

<input type="checkbox" name="personality">

You just have to end the input tag.
By which I mean to insert the closing > .

1 Like