The video element plays video natively without plugins. Add controls, poster, and width attributes. Provide multiple source formats for browser compatibility. The audio element works the same way for audio content.
HTML5 Audio and Video
<!-- Video -->
<video controls width="640" poster="thumb.jpg">
<source src="video.mp4" type="video/mp4">
<source src="video.webm" type="video/webm">
Your browser does not support video.
</video>
<!-- Audio -->
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
<source src="audio.ogg" type="audio/ogg">
</audio>