[HTML] video


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel ="stylesheet" href="../css/mystyle.css">
</head>
<body>
<pre>
무음일때는 자동재생(autoplay)이 된돵
video 요소에 muted 속성을 주면 자동 재생이 가능하다
</pre>
	<video width="640" height="480" controls autoplay muted>
		<source src="/webpro/multi/trailer.mp4" type='video/mp4'>
		<source src="/webpro/multi/trailer.ogv" type='video/ogg'>
	</video>

</body>
</html>