+ 1
Adding audio and videos
How can I easily add audio and video on HTML
3 Respostas
+ 2
You can add audio and video to HTML code using <audio> and <video> tags. You need to use src attributes in tags. The src attributes indicate the source of the media file. Example:
<audio src="https://example.com/audio.mp3 controls></audio>
<video src="https://example.com/video.mp4 controls></video>
Audio formats: mp3, wav
Video formats: mp4
+ 1
Thanks alot for this