반응형
The HTML <audio> Element
HTML 형식의 오디오 파일을 재생하려면 <audio> 요소를 사용하십시오.
Example
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
반응형
'IT > html' 카테고리의 다른 글
HTML 도우미 (플러그인) (0) | 2017.08.01 |
---|---|
HTML5 Audio on the Web(웹상의 오디오) (0) | 2017.08.01 |
HTML5 <video> 요소 (0) | 2017.01.31 |
HTML Google Maps (0) | 2017.01.27 |
html5 SVG와 캔버스의 차이점 (0) | 2017.01.27 |