: 라디오 버튼은 사용자의 선택을 "하나만" 입력 받을 수 있다.
<form action='a.jsp'>
성별<br>
<input type='radio' name='gender' value='female'>여성
<input type='radio' name='gender' value='male'>남성<br>
좋아하는 과일<br>
<input type='radio' name='fruite' vlaue='apple' checked>사과
<input type='radio' name='fruite' vlaue='banana'>바나나
<input type='radio' name='fruite' vlaue='orange'>오렌지
<input type='submit'>
</form>
성별