Day 8: Basic Forms
HTML Masterclass
Current Task
Objective
Forms capture user input.
Step 1: Create a <form> tag with action="/submit".
Step 2: Inside, add an <input> of type "text" and name "username".
Step 3: Add a <button> of type "submit" with the text "Send".
index.html
<form action="/submit">
<input type="text" name="username" />
<button type="submit">Send</button>
</form>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview