디자인은 신경쓰지 못할듯 ㅠㅠ
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> 타이틀 </title>
</head>
<body bgcolor="green" text="#ffffff">
<h1> 제 목 태 그 <h1>
<h2> 제 목 태 그 <h2>
<h3> 제 목 태 그 <h3>
<h4> 제 목 태 그 <h4>
<h5> 제 목 태 그 <h5>
<h6> 제 목 태 그 <h6>
안녕 하세요<br/>
줄바꿈이 자동으로 안됩니다.<br/>
<font color="blue" size="5">
폰트 태그입니다.
</font>
<hr color="red" width="100%" align"left"> <br />
<a href="http://www.google.com">Google</a> <br />
<img src="http://i.imgur.com/8YoRcQX.jpg" > <br />
<input type="text" /> <br />
<input type="password" /> <br />
<input type="button" value="입력버튼"/> <br />
<input type="file" /> <br />
<input type="checkbox" /> java
<input type="checkbox" /> jsp
<input type="checkbox" /> framework<br />
<input type="radio" name="study"/> java
<input type="radio" name="study"/> jsp<br />
<input type="hidden" name="test" value="aaaa"/>
<select>
<option>010</option>
<option>011</option>
<option>016</option>
<option>018</option>
</select> <br />
<textarea cols="50" rows="10">test</textarea>
<table border="3" width="500" bgcolor="red">
<tr bgcolor="yellow">
<td>100</td> <td bgcolor="blue">200</td>
</tr>
<tr>
<td bgcolor="green">300</td>
</tr>
<tr>
<td>500</td> <td>600</td>
</tr>
<tr>
<td colspan="2" bgcolor="cyan">700</td>
</tr>
<tr>
<td rowspan="2">900</td> <td>1000</td>
</tr>
<tr>
<td>1100</td> <td>1200</td>
</tr>
</table>
</body>
</html>