What is HTML?
HTML it stand’s for Hypertext Markup Language and is a markup language
What is HTML used for?
HTML it is used for structuring a web page and it’s content’s
Why are we learning HTML?
We have to learn it becaso is necessary to understand what is a “web page” and how is made, if we will build something that will be used on it. If we don’t know haw is build, and their components we will not bee able to make forward connection with our eventual application that we will build. 
What is an HTML tag?
Is the moust important component of an element, it defines the type of the element, it sits alwais at begining ad at the end of an element.
What is the structure of an HTML tag?
Conteins one opening and one closing angle brackets. inside the brackets must be always the name of the element.
What is an attribute?
Is another component of a tag, containing extra information about the element.
What is the anatomy of an HTML document?
< html >
** < head >**
** < meta charset=“utf-8” >**
** < title>**
** < /head >**
** < body >**
** < p >< /p >**
** < /body >**
< /html >
I hope is OK