Day 25: Fieldset & Legend
HTML Masterclass
Current Task
Objective
Group related form fields together visually and semantically.
Step 1: Create a <fieldset>.
Step 2: Add a <legend> inside with the text "Personia".
Step 3: Add a text <input>.
index.html
<fieldset>
<legend>Personia</legend>
<input type="text" />
</fieldset>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview