HTML is the definition of HyperText Markup Language.
It's the basis of a web page structure.
HTML usses this tags < the code > The content beetwen tags </ end of code>
I would divide it in four sections wich are
<html> - this is the first tag of all Html web pages... it says that we are using html to build the web page... it will be closed by </html> tag... all the page content will be beetwen these two tags.
Than we have the head section
<head> </head> Head is the head section of all the web pages... in this section we can create links with other scripts like javacript , css , php etc.. We can also define here the title of the web page with <title></title> or meta tags (we will talk later for this tags)
We have also the body section ...
<body> </body> bettwen these two tags we will start constructing our web page..
A very simple examle of the code learnd till now..
<html>
<head>
<title>Hello</title>
</head>
<body>
Hello World
</body>
</html>