HTML5 Tutorial with Examples Basic HTML document example This is a Basic HTML Document Example <!doctype html> <html lang="en"> <head> <meta name="description" content="HTML5 Tutorial for beginners with Examples"> <meta name="keywords" content="HTML5, tutorial, beginners, examples,"> <meta charset="UTF-8"> </head> <body> <h1>Heading</h1> <p> Document contents </p> </body> </html> Heading - HTML5 tutorial for beginners with examples In an HTML document Headings are defined with the <h1>, <h2>, <h3>, <h4>, <h5>, <h6> tags, from <h1> for the most important to <h6> for the least important. A browser automatically adds some empty space before and after the Headings. Headings are supported in all major browsers. ...