Friday, 9 August 2013

HTML select Tag

Introduction:

The HTML select tag is used for defining a select list.

Example:
<html>
<head>
<title>HTML select Tag</title>

</head>
<body>
<select>
  <option value ="sydney">Sydney</option>
  <option value ="melbourne">Melbourne</option>
  <option value ="cromwell">Cromwell</option>
  <option value ="queenstown">Queenstown</option>
</select>
</body>
</html>

No comments:

Post a Comment