Tags to define html elements which may be useful for LAB3
<HTML> ... </HTML> : This element tells a browser that this is an HTML document. You can find a simplest HTML template in this description.
<HEAD> ... </HEAD>:
The head element can contain information about the document. The browser does not display the "head information" to the user (except the <title> information. The following tags can be in the head section: <base>, <link>, <meta>, <script>, <style>, and <title>.
<BODY> ... </BODY>: The body element defines the documents' body. It contains all the contents of the document (like text, images, colors, graphics, etc.).
<P> ... </P>: To define a paragraph. The content of the paragraph should be enclosed inside <P> ... </P>.