HTML is not a programming language but just a markup language. HTML5 is the latest version of HTML.
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 <ahref="http://example.com/">Example</a></p>
</footer>
</body>
</html>
0 Comments