What is HTML?
It is a markup language that is used to build web pages and its content
Why do we use HTML?
We use HTML to the build the foundation of a webpage. It is the standard markup language developers use to build webpages. Although there are other, simple to use website builder tools like Wix, Wordpress or Squarespace, HTML allows us to customize a web page in anyway we like it.
Why are we learning HTML?
We are trying to learn HTML in order to get the basics of how to do programming. This language will lead us to other programming languages to learn, and ultimately, it will provide us enough knowledge to develop cryptocurrencies.
What is an HTML tag?
They are angle brackets that shows where the element begins and ends.
What is the structure of an HTML tag?
Includes the Opening tag, followed by the content, and then the closing tag. All parts makes up the element.
What is an attribute?
Attributes includes info about an element that you donât want to display on the actual website.
What is the anatomy of an HTML Document?
â!DOCTYPE htmlâ Just an ancient tag that needs to be in the html file
âhtmlâ This element wraps around the the content on the entire page
"meta charset=âutf-8â - this element sets the character set of the html document. You should include this
âtitleâ sets the title of the page
âbodyâ contains all the content that you want to show to users. Text, images, videos, all the good stuff