Programming/HTML & CSS & JS

HTML_오디오, 비디오, 이미지 삽입

Bear_V 2021. 3. 5. 04:48
<!DOCTYPE html>
<html lang="ko">
    <head>
        <meta charset="utf-8">
        <title>예제</title>
    </head>
    <body>
    	<h3>Image</h3>
        <img src="/Lecture/images/img.jpg" width=300 alt=오렌지 사진>
        <h3>Audio</h3>
        <audio src="/Lecture/audio/audio.mp3"  autoplay controls loop></audio>
        <h3>Video</h3>
        <video src="/Lecture/videos/video.mp4" autoplay muted  width=450></video>
    </body>
</html>