Answer:
The code is as follows:
<form name = "myForm">
<div>
<input type="radio" name="vehicle" value="D0" id="D0"/>
<label for="D0">Car</label>
</div>
<div>
<input type="radio" name="vehicle" value="D1" id="D1"/>
<label for="D1">Bike</label>
</div>
</form>
Explanation:
This defines the first button
<input type="radio" name="vehicle" value="D0" id="D0"/>
<label for="D0">Car</label>
This defines the second button
<input type="radio" name="vehicle" value="D1" id="D1"/>
<label for="D1">Bike</label>
The code is self-explanatory, as it follows all the required details in the question