코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML5 Multimedia Video</title> </head> <body> <h1>video 요소를 이용한 동영상 삽입</h1> <video style="width:576px; height:360" controls> <source src="/examples/media/sample_video_mp4.mp4" type="video/mp4"> <source src="/examples/media/sample_video_ogg.ogg" type="video/ogg"> 이 문장은 사용자의 웹 브라우저가 video 요소를 지원하지 않을 때 나타납니다! </video> </body> </html>