The tag to start the HTML document. Used in most documents. Other tags like <body> may be also used.
<html>
<head>
<title>Test webpage</title>
</head>
<body>
<h1>Hello, world!</h1>
<p>This is aexample of a test page, you can check your browser if works with this!</p>
</body>
</html>