Write HTMLS code with CSS as follows ~ * Design a form wich accepts Ine uset name © Also create radio buttons to display the mode of payment as COD, Deb card , Credit
Card, Paytm etc © Maka provision for submitting and clearing form contents
Answers
Answered by
1
Answer:
This page contains HTML radio button code. You can copy/paste this code into your own blog or website in order to create radio buttons.
A radio button is a form element that allows the user to select one option from a range of options.
Radio buttons are created with the HTML <input> tag. Radio buttons can be nested inside a <form> element or they can stand alone. They can also be associated with a form via the form attribute of the <input> tag.
Explanation:
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
Similar questions