여러가지 태그들
<html>
<head>
<title>여러가지 html 태그 연습</title>
</head>
<body>
<!--동영상파일 띄우기 .avi .mpg .mp3 -->
<embed src="http://www.hyundai.or.kr/img/movie.asf">
<!--이미지맵rect / circle/ ploy-->
<img src="../images/hyundaigo.gif" usemap="#lee">
<map name="lee">
<area shape="rect" coords="10,10,140,140" href="http://www.daum.net" target="_blank" alt="사각형">
</map>
<a name="top">
<!--현재페이지에서 링크하기-->
<a href="#kim">아래로이동</a>
<a href="http://www.hyundai.or.kr">현대</a>
<br>
<!--영역지정하기-->
<div style="left:50px;top:100px;width:100px;height:200px;background-color:blue">
바람과 함께 사라지다.
</div>
<br>
<span style="background-color:red">
무궁화꽃이 피었습니다.
</span>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<a name="kim">
현대직업전문학교
<br>
<a href="#top">위로이동</a>
</body>
</html>