HTML 25 <input type="radio"> 태그로 라디오 버튼 만들기

프론트엔드/HTML|2021. 3. 19. 12:21
Document
개인 정보 : 공개 비공개
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <form>
   개인 정보 : <input type="radio" name="info" checked>공개
   <input type="radio" name="info">비공개
   </form>
</body>
</html>

 

댓글()
구독