HTML Tutorials

HTML is Hyper Text Markup Language.
This tutorials teaches you about HTML and HTML5.
HTML is very important for static web pages.
Examples in HTML
Example
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>