What is HTML?
HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content. It`s a markup language that defines the structure of your content.
It consists of a series of elements that you can ENCLOSE or WRAP to make it appear or behave in a certain way
What is HTML used for?
It is used to construct web pages. The web browser reads the HTML document, and displays it according to the HTML language
Why are we learning HTML?
We are learning it so we can code web pages. We need to be able to interact with web pages with our blockchain applications.
What is an HTML tag?
I tâs a way to tell which element you are putting into the code. Where its begins and were it ends
What is the structure of an HTML tag?
The opening tag has use the âgreater then, smaller then symbolâ <> with the element symbol inside. The closing one uses a forward slash as well to tell where the element ends </> with the element sybol after the forward slash
What is an attribute?
Attributes contain extra information about the element that you donât want to appear in the actual content.
What is the anatomy of an HTML document?
Doctype: Telling the browser we are talking about a HTML file. It must expect according to the latest HTML standard
HTML lang=âenâ Is a mandatory tag. Wraps all the content on the entire page
Head: Some meta information. Information on the document itself
Body: Inside the body, you write the document itself.