Welcome to Home.

Monday, February 22, 2016

Buttons and Checkbox in HTML

<html>
<head>
<title>Buttons and Checkbox</title>
</head>
<body>
<body bgcolor="skyblue">
<input type="checkbox" name="checkbox"> I have a Bike<br>
<input type="checkbox" name="checkbox">I have a Car<br>
Username:<input type="text" name="Username"><input type="button" value="submit" name="Submit"><br>
<input type="radio" name="radio">Male<br>
<input type="radio" name="radio">Female<br>
</body>
</html>

No comments:

Post a Comment