[HTML] 미디어 태그, description list 연습

aramjs·2023년 4월 21일
1

HTML

목록 보기
5/5
post-thumbnail

연습!!

<!--이미지 매핑-->
<img src="01.jpg" usemap="#rock" width="300px">
<map name="rock">
  <area shape="rect" coords="100, 100, 200, 200" href="http://velog.io" target="_blank">
</map>
<a href="http://naver.com" target="_blank">
<img src="01.jpg" width="50%"></a>

<!--미디어 태그-->
<img src="01.jpg" alt="사진" width="300px">

<!-- object :닫는 태그가 있다.  data와 짝꿍-->
<object data="form.html"></object>
<object data="multi/thum6.PNG" height="200px" ></object>

<!-- embed :닫는 태그 없음. src와 짝꿍 -->
<embed src="multi/thum7.PNG" height="200px">

<!-- audio, video : 닫는 태그 있음!! src와 짝꿍! 닫는태그 없는 것: embed, input, img, area-->
<audio src="multi/bgsound.mp3" autoplay controls loop></audio>
<video src="multi/free1.mp4" muted autoplay loop width="500px"></video>


<!--설명 리스트-->
<dl>
<dt style="border:1px dashed pink">title</dt><dd>1</dd><dd>2</dd>
<dt style="border:1px dashed pink">title</dt><dd>33</dd><dd>44</dd>
</dl>

설명 리스트

profile
안녕하세요.

0개의 댓글