HTML Tutorial - Forms - User Input
๐ Forms - User Se Data
๐ Forms Everywhere:
๐ Login/Signup
๐ Checkout
๐ง Contact forms
๐ Input Types
| Type | Use |
|---|---|
| text | Name, username |
| Email address | |
| password | Hidden text |
| radio | One choice |
| checkbox | Multiple choices |
Example
<form>
<input type="text" placeholder="Name">
<button>Submit</button>
</form>