An HTML5 document template is very much simplified compared to XHTML one and looks as follows.
| HTML tags |
|---|
<!DOCTYPE html> <html lang="en"> <head> <title>HTML5 template</title> <meta charset="utf-8"> </head> <body> <p>Document template</p> </body> </html> |