Introduction:
The HTML
Example:
The HTML
option tag is used in conjunction with the select tag and is used for defining option items within the select list.Example:
<html>
<head>
<title>HTML option Tag</title>
</head>
<body>
<select>
<option value ="sydney">Sydney</option>
<option value ="melbourne">Melbourne</option>
<option value ="cromwell" selected>Cromwell</option>
<option value ="queenstown">Queenstown</option>
</select>
</body>
</html>
0 comments :
Post a Comment