How to make radiobutton to select only one in HTML.
<input id="rbMango" type="radio" value="Mango"><label for="rbMango">Mango</label>
<input id="rbApple" type="radio" value="Apple"><label for="rbApple">Apple</label>
<input id="rbOrange" type="radio" value="Orange"><label for="rbOrange">Orange</label>
When i am selecting able to select all RadioButton.
My requirement is to select only one.
How to achieve this?