-
What is HTML?
It stands for HyperText Markup Language is the code used to structure a webpage and its contents -
What is HTML used for?
Is used to structure a webpage and the contents on it
- Why are we learning HTML?
Because it is the most basic for learning the other programming languages and it is the root to learn and create your own webpage that you will be able to put your own business, crypto, or dapp on.
- What is an HTML tag?
A tag is something the browser will look at and the tag will tell in in which way it has to show it and what it has to show in particular
- What is the structure of an HTML tag?
Tags always come in pairs the first one which we will start with will be written like this <1> also called a Opening tag (the 1 will be changed to the command you want the specific content to do.) Once the content has been written the other tag will look like this </1> this is called a closing tag
- What is an attribute?
An Attribute is something specific or an additional property inside the tag
- What is the anatomy of an HTML document?
It will always start with < html > then < head > then < body > where we will put all the content and then at the end we will have to close all of them so that will look like this
< /body > < /head > < /html >