HTML <video> 요소
HTML <video> 요소
HTML로 비디오를 표시하려면 <video> 요소를 사용하십시오.
Example
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
<!DOCTYPE html>
<html>
<body>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 1개
장점 모바일, 익스 다 지원한다는 점...