반응형
input type = "radio" 일때 중복 선택이 되지 않게 하는 방법
뒤에 name을 붙인다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<form>
<label for = "name">이름</label>
<input id = "name" type = "text"> <br>
<label for = "age">나이</label>
<input id = "age" type = "text"><br>
<lable for = "sex">성별</lable>
남 <input type = "radio" name = "sex">
여 <input type = "radio" name = "sex">
</form>
</body>
</html>
반응형
'HTML, CSS' 카테고리의 다른 글
<Textarea> </textarea> rows, cols, placeholder (0) | 2020.10.28 |
---|---|
table 생성, fieldset, legend, label (0) | 2020.10.28 |
HTML 자주 사용되는 태그 (0) | 2020.08.05 |
[생활코딩] project004 HTML CSS로 웹사이트 만들기 (0) | 2020.08.02 |
[생활코딩] project001 HTML CSS 기본 웹사이트 (0) | 2020.07.18 |