HTML5 Media Elements

Embedding audio, video, and other media

Video Element

<video src="video.mp4" controls> # basic video
    Your browser doesn't support video
</video>

Video with Sources

<video controls width="640" height="360">
    <source src="video.mp4" type="video/mp4">
    <source src="video.webm" type="video/webm">
</video>

Audio Element

<audio src="audio.mp3" controls> # basic audio
    Your browser doesn't support audio
</audio>

Media Attributes

controls # show playback controls
autoplay # start playing automatically
loop # repeat playback
muted # mute audio
preload="auto" # auto, metadata, none
poster="image.jpg" # video thumbnail

Other Media

<img src="image.jpg" alt="Description"> # image
<iframe src="page.html"></iframe> # embedded page
<canvas id="myCanvas"></canvas> # drawing canvas
<svg>...</svg> # scalable vector graphics