Mnoge stvari su u HTML5 pojednostavljene. Dolje možete vidjeti jedan HTML5 dokument koji vam može poslužiti kao predložak.
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title></title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="author" content="AdAm"> <meta name="robots" content="index,follow"> <meta name="googlebot" content="index,follow"> <link rel="stylesheet" type="text/css" href=".css"> <link rel="icon" href="favicon.ico" type="image/ico"> <!-- jQuery --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("#msgid").html("Ovo je jQuery text"); }); </script> <style> div { color:red; } </style> </head> <body> <div id="msgid"></div> </body> </html>