HTML Forms
Forms are used to collect user input on web pages.
Basic Form Structure
<form action="/submit" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<input type="submit" value="Submit">
</form>
Common Form Elements
Text Input
<input type="text" placeholder="Enter your name">
Radio Buttons
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
Checkboxes
<input type="checkbox" name="hobby" value="reading"> Reading
<input type="checkbox" name="hobby" value="gaming"> Gaming
Select Dropdown
<select name="country">
<option value="usa">USA</option>
<option value="uk">UK</option>
<option value="canada">Canada</option>
</select>
Form Validation
<input type="email" required>
<input type="tel" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}">
Best Practices
- Use proper labels
- Include form validation
- Group related fields
- Provide clear instructions
- Make forms accessible