tadam logo

HTML5 Tutorial

HTML5

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

HTML5 Example
<!DOCTYPE HTML>
<html>
<body>

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

</body>
</html>
The output of the code above will be:

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

Start learning HTML5 now!

HTML5 References

At Xhtml.co.il you will find complete references about tags, global attributes, standard events, and more.

HTML5 Tag Reference

Was this information helpful?
   

Comments