<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>타이틀입니당</title>
</head>
<body>
<dl>
<dt>웹표준</dt>
<dd>W3C권고안으로 만든 문서</dd>
</dl>
</body>
</html>
<li><img src="./img/road2.jpg" alt="5" ></li>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>form Exam</h3>
<form action="server_url.jsp" method="get">
<fieldset>
<ol>
<li>
<label for="userName">이름</label>
<input type="text" name="userName" id="userName"
autofocus="autofocus" placeholder="ex)홍길동">
</li>
<li>
<label>이메일</label>
<input type="email" placeholder="ex)23123@gmail.com" required="required" />
</li>
<li>
<label>날짜</label>
<input type="date"/>
</li>
<li>
<label>색상</label>
<input type="color"/>
</li>
<li>
<label>수량</label>
<input type="range" min="1" min="10" min="5"/>
</li>
<li>
<label>옵션</label>
<select>
<option value="BMW">BMW</option>
<option value="BENCH">벤츠</option>
<option value="KTX">KTX</option>
</select>
<li>
<label><input type="checkbox" name="월" value="1"/>월</label>
<label><input type="checkbox" name="화" value="2"/>화</label>
<label><input type="checkbox" name="수" value="3"/>수</label>
<input type="radio" name="fruit" value="사과" /> 사과
<input type="radio" name="fruit" value="바나나" checked="checked" /> 바나나
</li>
<li>
<input type="radio" name="fruit" value="1"/>목
<input type="radio" name="fruit" value="2"/>금
<input type="radio" name="fruit" value="3" checked="checked" />토
</li>
</ol>
</fieldset>
<fieldset>
<input type="submit" value="전송">
</fieldset>
</form>
</body>
</html>
<p>
<iframe src="img_exam.html" width="500" title="이미지 예제"></iframe>
</p>
<figure>
<figcaption>
동영상
<video width="640" height="360" controls="controls">
<source src="Merry_Love.MP4" type="video/mp4"/>
</video>
</figcaption>
</figure>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<table width="450" border="1" cellpadding="0" cellspacing="0">
<caption>2018프로야구 순위</caption>
<thead>
<tr height='50' align="center">
<td>순위</td>
<td>팀명</td>
<td>승</td>
<td>무</td>
<td>패</td>
</tr>
</thead>
<tbody>
<tr height='50' align="center">
<td rowspan="2">1</td>
<td>SK</td>
<td>90</td>
<td>0</td>
<td>10</td>
</tr>
<tr height='50' align="center">
<td>두산</td>
<td>80</td>
<td>0</td>
<td>20</td>
</tr>
<tr height='50' align="center">
<td>3</td>
<td>넥센</td>
<td>70</td>
<td>0</td>
<td>30</td>
</tr>
</tbody>
<tfoot>
</tr>
<tr height='50' align="center">
<td colspan='2'>합계</td>
<td></td>
<td></td>
</tr>
</tfoot>
</table>
</body>
</html>