Ad Code

HTML Form project using Radio Box

Advertisements
HTML Form project using Radio Box,hr,hr color,hr size,etc.
Project Code:
<html>
<head>
<title>Example of Radio box Form
</title>
</head>
<body>
<h2>Project of Radio box Form
</h2>
Are you married ?
<form>
<input type="radio"name="choise"Value="ans1">Yes
<input type="radio"name="choise"Value="ans2">No
</form>
<hr color="blue">
Do you have kids?
<form>
<input type="radio"name="choise"Value="ans1">Yes
<input type="radio"name="choise"Value="ans2">No
</form>
<hr color="green"size="5">
Are you newly married?
<form>
<input type="radio"name="choise"Value="ans1">Yes
<input type="radio"name="choise"Value="ans2">No
</form>
</body>
</html>
Output
HTML Form project using Radio Box

Download Link
Advertisements