반응형
Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

전업요리사의 앱 개발 공부하기

iframe 태그 동영상, uri 넣기 본문

HTML

iframe 태그 동영상, uri 넣기

브레드jung 2021. 4. 28. 13:27

<html>

    <head>

        <title>p</title>

   </head>

       <body>

          <video controls loop muted poster="../HTML/c/4.j.jpg" preload="bbb">

               <source src="a.mp4" type="video/mp4">

          </video>

          <iframe src="http://tcpschool.com"></iframe>

       </body>

</html>

 

iframe 태그를 사용해서 HTML 동영상을 넣을수있다

 

또는

 

<iframe

  width="100%"

  height="100%"

  src="https://www.youtube.com/embed/G0ey5zbQB-U"

  title="YouTube video player"

  frameborder="0"

  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"

  allowfullscreen="allowfullscreen">

</iframe>

 

uri 동영상

반응형

'HTML' 카테고리의 다른 글

개념, 역사  (0) 2021.05.01
video 태그 컴퓨터 안에있는 동영상!  (0) 2021.04.28
기타 태그들  (0) 2021.04.13
HTML form태그  (0) 2021.04.08
HTML table태그  (0) 2021.04.08