<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<title>my homepage</title>
</head>
<body>
<h2>my homepage</h2>
<p>
<img src="./image/programmer.png" alt="프로그램">
<strong>컴퓨터 프로그래머</strong>를 꿈꾸며 열심히 공부하고 있는 1인입니다.
</p>
<h3>현재 학습하고 있는 과목</h3>
<ul>
<li>li>C 언어 </li>
<li>JAVA 언어 </li>
</ul>
<h3>이번 학기 시간표</h3>
<table border="1">
<caption>시간표</caption>
<tr>
<th> </th>
<th>월요일</th>
<th>화요일</th>
<th>수요일</th>
</tr>
<tr>
<th>1교시</th>
<th>c언어</th>
<th>java</th>
<th>java</th>
</tr>
<tr>
<th>2교시</th>
<th>c언어</th>
<th>java</th>
<th>java</th>
</tr>
</table>
</body>
</html>
