---
title: "How to add video and audio in HTML5?"  
description: "How to add video and audio in HTML5?"  
author: "AVADHESH PATEL"  
published: 2012-10-08  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/1542/how-to-add-video-and-audio-in-html5  
category: "html5"  
tags: ["html5"]  
reading_time: 1 minute  

---

# How to add video and audio in HTML5?

Like below we can add video in html5

<video width="320" height="240" controls="controls">\
<source src="pcds.mp4" type="video/mp4" />\
<source src="pcds.ogg" type="video/ogg" />\
</video> \
And audie like this \
<audio controls="controls">\
<source src="song.ogg" type="audio/ogg" />\
<source src="song.mp3" type="audio/mpeg" />\
</audio>

## Answers

### Answer by AVADHESH PATEL

Like below we can add video in html5

<video width="320" height="240" controls="controls">\
<source src="pcds.mp4" type="video/mp4" />\
<source src="pcds.ogg" type="video/ogg" />\
</video> \
And audie like this \
<audio controls="controls">\
<source src="song.ogg" type="audio/ogg" />\
<source src="song.mp3" type="audio/mpeg" />\
</audio>


---

Original Source: https://www.mindstick.com/interview/1542/how-to-add-video-and-audio-in-html5

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
