HTML 02 Forms
HTML 02 Forms
HTML Tags
TAG ATTRIBUTES REMARKS
FORM
textarea rows=”N”
cols=”N”
COMBO BOX
option value=”<VAL>”
<option value=”RC”>Roman
Catholic</option>
MISCELLANEOUS
NOTES
<form>
Name: <input type="text" placeholder="Last Name, First Name" />
<br />
E-mail Address:
<input type="email" />
<br />
<label>Address:</label>
<textarea class="addr" rows="4"></textarea>
<br />
Gender:
<select>
<option>Male</option>
<option>Female</option>
</select>
<br />
Interests:
<select size="10">
<optgroup label="Entertainment">
<option>Showbiz</option>
<option>Hollywood</option>
<option>Bollywood</option>
</optgroup>
<optgroup label="Technology">
<option>Hardware</option>
<option>Software</option>
<option>Gaming</option>
</optgroup>
</select>
<br />
<button type="submit">Submit</button>
<button type="reset">Reset</button>
<button type="menu">Menu</button>
</form>
</body>
</html>