<html lang="ko">
<head>
<meta charset="UTF-8">
<title>HTML Forms</title>
</head>
<body>
<h1>체크박스</h1>
<p>다음 중 재밌고 내용이 알찬 강좌를 모두 골라주세요.</p>
<form>
<input type="checkbox" name="lecture" value="html" checked> HTML <br>
<input type="checkbox" name="lecture" value="css"> CSS <br>
<input type="checkbox" name="lecture" value="java"> JAVA <br>
<input type="checkbox" name="lecture" value="cpp" disabled> C++
</form>
</body>
</html>