본문 바로가기
study/Html

[Html] 3. 멀티미디어와 링크 (비디오 삽입하기 : <video>)

by 금이패런츠 2022. 4. 4.
728x90
반응형
<!DOCTYPE html>
<html>
<body>
<video width='320' height='240' autoplay controls loop>
	<source src='sample-video.mp4' type='video/mp4'>
	<source src='sample-video.webm' type='video/webm'> 
	<source src='sample-video.ogg' type='video/ogg'> 
</video>
</body>
</html>

 

728x90
반응형