Day 12: Textareas
HTML Masterclass
Current Task
Objective
Textareas allow multi-line input.
Step 1: Create a <textarea> tag.
Step 2: Give it name="message", rows="4", and cols="50".
Step 3: Set the inner text to "Enter message...".
index.html
<textarea name="message" rows="4" cols="50">Enter message...</textarea>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview