Friday, August 13, 2010

Computer Programm for checkbox In HTML

<html>
<head>
<body><form>
<table>
<tr>
<td>Receive alert by:</td>
<TD><input TYPE="radio" name="alert by" value="Email"checked>Email
<input TYPE="radio" name="alert by" value="SMS">SMS
</td></tr>
<tr><td> Games of Interest:</td>
<td> <input type="checkbox" name="game" Value="Shooting"checked>Shooting
<input type="checkbox" name="game" Value="Puzzle">Puzzle
<input type="checkbox" name="game" Value="Detective"checked>Detective
<input type="checkbox" name="game" Value="scrabble">Scrabble
</td>
</tr>
<tr><td>Country:</td>

<td><select name="Country" Size=3 multiple>
<option  value="France">France</option>
<option  selected value="India">India</option>
<option value="New Zeland">New Zeland</option>
<option value="United Kingdom">United Kingdom</option>
<option value="United States">United States</option></select>
<br> to select more than one country, hold CTRL key while clicking 
</td></tr>
</table>
</form>
</head>
</html>


No comments:

Post a Comment