본문 바로가기
HTML

[Html] media files type

by UnoCode 2020. 5. 14.
  • <video> , <embed>, <audio> Sample

1. <video>


1
<video src="https://content.codecademy.com/courses/SemanticHTML/dog-video.mp4" controls></video>
cs

속성 : autoplay : 자동시작
controls : 동영상 기본 기능



2. <embed>

html5에서 새로 추가된 태그입니다. 기존에는 object 태그를 이용하여 외부 플러그인 또는 외부 응용프로그램 삽입이 가능했습니다.


1
<embed src="https://content.codecademy.com/courses/SemanticHTML/dog-on-beach.gif"/>
cs


3. <audio>


1
2
<audio controls src="https://content.codecademy.com/courses/SemanticHTML/dogBarking.mp3" type="audio/mp3"></audio>
 
cs

속성 : autoplay : 자동시작
controls : 동영상 기본 기능
type : 오디오 타입지정(audio/mp3)


'HTML' 카테고리의 다른 글

[Html] What is the HTTP  (0) 2020.07.08
[Html] 웹은 어떻게 발전했을까?  (0) 2020.06.23
[Html] 웹의 역사  (0) 2020.06.23
[Html] Input 정리  (0) 2020.05.14
[Html] Table 정리  (0) 2020.05.13

댓글