코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML video tag - width attribute</title> </head> <body> <video height="180" width="288" controls> <source src="/examples/media/sample_video_ogg.ogg" type="video/ogg"> <source src="/examples/media/sample_video_mp4.mp4" type="video/mp4"> 이 문장은 여러분의 브라우저가 video 태그를 지원하지 않을 때 화면에 표시됩니다! </video> </body> </html>