<element-name> ...................Content....................... </element-name>
There are also some HTML elements that do not have any closing tags. These elements are called void elements. The only type of data that void elements are allowed to have are attributes. For example <br />, <hr /> , <col>, <img> etc.
In syntax DOCTYPE helps the browser to understand the version of HTML. DOCTYPE declarations are not HTML tags. <html> tag open the page. That means there should not be any tag used after closing html tag. <head> opens head section, which usually does not appear in main browser window but it contain page title name, information about HTML document, called meta data. It can import some styling sheets and scripts and in head tag you can also add favicons, icons.
<title> contain title of your HTML document that you want to appear at top. It does not show title on browser main window but on title bar. <body> have all content that a user can see or access. You can use different tags, style attributes in this tag. This content is visible on browser's main window.