HTML5 Tutorial

« W3Tutors Home Next Chapter »

HTML

HTML5 is the next generation of HTML.

This tutorial teaches you about the new features in HTML5.

Examples in Each Chapter

With our HTML editor, you can edit the HTML, and click on a button to view the result.

Example

<!DOCTYPE HTML>
<html>
<body>

<video width="320" height="240" controls="controls">
  <source src="movie.ogg" type="video/ogg" />
  <source src="movie.mp4" type="video/mp4" />
  <source src="movie.webm" type="video/webm" />
Your browser does not support the video tag.
</video>

</body>
</html>

Try it yourself »

Click on the "Try it yourself" button to see how it works

Start learning HTML5 now!

HTML5 References

At W3Tutors you will find complete references about tags, standard attributes, standard events, and more.

HTML5 Tag Reference


« W3Tutors Home Next Chapter »