Tạo thêm thẻ div mới chứa 3 thẻ input với name="gender" và type="radio". Sau thẻ thứ nhất thêm vào chữ Nam, sau thẻ thứ 2 thêm vào chữ Nữ và sau thẻ thứ 3 thêm vào chữ Khác.
2 câu trả lời
<div>
<input type="radio" name="gender">Nam
<input type="radio" name="gender">Nữ
<input type="radio" name="gender">Khác
</div>
<!DOCTYPE html>
<html>
<body>
<div>
<input name="gender" type="radio">Nam
<input name="gender" type="radio">Nữ
<input name="gender" type="radio">Khác
</div>
</body>
</html>
Câu hỏi trong lớp
Xem thêm