Build a Superhero Application Form - Step 15

Tell us what’s happening:

what is the wrong thing in this code

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: index.jsx */
{/* User Editable Region */}
            <input type="checkbox" value={power}></input>
            <span>{power}</span>
{/* User Editable Region */}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a Superhero Application Form - Step 15

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-superhero-application-form/68148d280ee30e5a567a0e2d.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hey @Ahmed-Ezzat-oss,

Welcome to freeCodeCamp forum!

input is a void element so it does not need a closing tag. Checkout self-closing tags and then retry this step.

Happy coding~