Table of contents
No headings in the article.
Hi Everyone,
let's talk about few more html tags:
The first one is 'audio' and second is 'video' :
- Audio tag: Audio tag is basically playing the audio files on web pages. let's see the example below
<!Doctype html>
<html>
<head>
<title>playing audio</title>
</head>
<body>
<audio src="./music.mp3" controls></audio>
</html>
Ouput:
Note: controls are used to play, pause,volume up and down shown above.
2.Video tag: Video tag is used to playing videos on web pages shown below:
<!Doctype html>
<html>
<head>
<title>playing audio</title>
</head>
<body>
<video src="./music.mp3" controls></video>
</html>
Note: controls are used to play, pause,volume up and down shown above.
Thanks For Reading!