The basic HTML document structure starts with the doctype html, followed by a html set of tags. Nested in the html tag we will find the head tag and the body tag. The head tag will encapsulate other elements like title. The body tag will contain the elements that make the web page, like the h, p tags and more.
<!DOCTYPE html> <html> <head> <title>Title of this page</title> </head> <body> <h1>Head</h1> <p>A paragraph this can be</p> </body> </html>