← All tutorials

GoCareerGo Tutorials

HTML Tutorial

Tags, attributes, HTML5 APIs and semantic markup — the web's foundation.

HTML5 Audio and Video

Native <audio> and <video> tags play media without any browser plugin.

<video controls width="480">
  <source src="movie.mp4" type="video/mp4" />
  Your browser doesn't support video.
</video>

<audio controls>
  <source src="song.mp3" type="audio/mpeg" />
</audio>