TextBox attribute of form tag with Example.

Example: html forms

<form action="/page/"></form>
<input type="text">
<input type="password">
<input type="email">
<input type="date">
<input type="url">
<input type="image">
<input type="search">
<input type="checkbox" name="">
<input type="button">
<input type="number">
<input type="color">
 
<input type="radio" name="radio" id="radio1" value="radio1selected">
<input type="radio" name="radio" id="radio2" value="radio1selected">
<input type="radio" name="radio" id="radio3" value="radio1selected">
 
 
<select name="Meal" id="Meal">
<option value="Steak">Steak</option>
<option value="Fish">Fish</option>
</select>
 
 
<input type="text" placeholder="hint text">
 
<label for="username">Enter a username</label>
<input type="text" placeholder="Enter username" id="username">

Tags:

Html Example