Audio and Video Tags in HTML

Audio and Video Tags in HTML

<Audio> Tag

Audio tag is use for embed audio files in Html, src="__" is used for path,

Attributes are :

controls - for showing controls, loop - for play again and again, src - path of file, muted - for mute

audio_tag.png

        <audio src="./roar.mp3" width="200" controls></audio>
        Download the <a href="./roar.mp3" download>MP3 file</a> .
        </figure>

<Video> Tag

Video tag is use for embed video files in Html,

Attributes are :

same controls as audio file - controls, loop, src, muted but here width and height can also be given

video_tag.png

<video src="./flower_video.mp4" controls width="400" autoplay="false"></video>
        Download the <a href="./flower_video.mp4">MP4 video</a> .

##All Codes Here

```<!DOCTYPE html>

Document

<div>
    <video src="./flower_video.mp4" controls width="400" autoplay="false"></video>
    Download the <a href="./flower_video.mp4">MP4 video</a> .
</div>
<br />
<div>
    <figure>
    <audio src="./roar.mp3" width="200" controls></audio>
    Download the <a href="./roar.mp3" download>MP3 file</a> .
    </figure>
</div>

```

If any suggestion please say it in comment.