What is HTML?
Hypertext Markup Language, a markup language.
What is HTML used for?
It defines the structure of your webpage.
Why are we learning HTML?
It’s basics in programming and we’ll need that later for creating stuffs.
What is an HTML tag?
A html tag states wether a element is beginning or closing.
What is the structure of an HTML tag?
It has a opening tag wrapped in opening and closing angle brackets. The closing tag is also wrapped in opening and closing angle brackets including a forward slash before the element name.
What is an attribute?
Attributes contain extra information about the element that won’t appear in the actual content.
What is the anatomy of an HTML document?
< !DOCTYPE html> — doctype
< html> < /html> — the element
< head> < /head> — the element
< meta charset=“utf-8”> - this element sets the character set
< title> < /title> — the element
< body> < /body> — the element