<html lang="ko">
<head>
<meta charset="UTF-8">
<title>HTML Forms</title>
</head>
<body>
<h1>라디오 버튼</h1>
<p>다음 중 가장 재밌고 내용이 알찬 강좌를 하나만 골라주세요.</p>
<form>
<input type="radio" name="lecture" value="html" checked> HTML <br>
<input type="radio" name="lecture" value="css"> CSS <br>
<input type="radio" name="lecture" value="java"> JAVA <br>
<input type="radio" name="lecture" value="cpp"> C++
</form>
</body>
</html>