728x90
반응형

  

  2. 멀티미디어

    2-1. 비디오

        controls : 재생 버튼 생성

 <video controls>            
 <!-- <source src="자원경로" type="확장자에 대한 명시">  -->            
 <source src="자원경로" type="확장자에 대한 명시">         
 </video>

    

  

    2-2. 오디오

 <audio controls>            
 <source src="" type="audio/mp3">        
 </audio>

    

   

    2-3. 유투브

        <iframe>  → 저작권 문제 등으로 동영상 실행이 잘되지 않음

<!--data="//www.youtube.com/embed/삽입하고자하는 유투브의 고유값(=iUdE1xyjxhQ) watch?v=iUdE1xyjxhQ

여기서 = 다음에 있는 것  -->

        <!--기본적으로 자동재생되려면 ?autoplay=1 을 넣어야 함 -->

        <object data="//www.youtube.com/embed/iUdE1xyjxhQ?autoplay=1" type="text/html">

        </object>

<object data="//www.youtube.com/embed/iUdE1xyjxhQ?autoplay=1" type="text/html">        
</object>

 

728x90
반응형

'Coding With Jina > HTML' 카테고리의 다른 글

[HTML] Sematic & Non Semantic Tags  (0) 2020.05.12
[HTML] 기본 개념  (0) 2020.05.12
[HTML] Form 태그  (0) 2020.05.07
[HTML] list 와 table  (0) 2020.05.07
[HTML] 공간분할  (0) 2020.05.07