HTML — Forms Advanced
Forms can have many input types:
text
email
number
checkbox
radio
date
These help collect different data.
<form>
Email: <input type='email'><br>
Age: <input type='number'><br>
<input type='checkbox'> I agree<br>
<input type='radio' name='gender'> Male
<input type='radio' name='gender'> Female
</form>