The root element that specifies that the content of the document is HTML. The opening tag immediately follows the DOCTYPE declaration and the closing tag is the last thing in the document. The html element must contain the head and the body elements. The <html> tag is the container for all other HTML elements (except for the <!DOCTYPE> tag).
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>The Title of the page</title> <link rel="stylesheet" href="myStyleSheet.css"> <script src="myJavaScript.js"></script> </head> <body> <!-- All the content should go here --> </body> </html>