Table
<table border = 1> // 표 테두리 두께
<caption>강의실안내</caption> // 표 설명 추가
<tr> // 행
<td>과목명</td> // 셀
<th>학점</th> // 볼드처리
</tr>
</table>
List
<h2>Unordered List</h2>
<ul> // Unordered List: 점으로 나열
<li>빅데이터 분석</li>
</ul>
<ol> // ordered List: 숫자로 나열
<i>빅데이터 분석</li>
</ol>
Form
<form>
이름<br>
<input type="text"><br>
성별<br>
<input type="radio" name="gender">남성
<inpot type="radio" name="gender">여성<br>
<input type="submit">
<form>```