<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<video width="300" height="300" controls autoplay muted loop> <!--autoplay 자동재생 muted 음소거 loop 반복-->
<source src="/ch02/hello.mp4">
</video>
<audio controls autoplay muted loop>
<source src="/ch02/hello.mp3">
</audio>
</body>
</html>

Share article