HTML5 Tutorial
HTML5 is the latest and most enhanced version of HTML. Technically, HTML is not a programming language, but rather a mark-up language.
This tutorial has been designed for beginners in HTML5 providing the basic to advanced concepts of the subject.
Before starting this tutorial you should be aware of the basic understanding of HTML and its tags
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<body>
<header role="banner">
<h1>HTML5 Document Structure Example</h1>
<p>This page should be tried in safari, chrome or Mozila.</p>
</header>
<footer>
<p>Created by <a href="http://example.com/">Example</a></p>
</footer>
</body>
</html>