Explore Westonci.ca, the leading Q&A site where experts provide accurate and helpful answers to all your questions. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.
Sagot :
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
We hope our answers were useful. Return anytime for more information and answers to any other questions you have. We hope this was helpful. Please come back whenever you need more information or answers to your queries. Westonci.ca is committed to providing accurate answers. Come back soon for more trustworthy information.