Answer these Check for Understanding questions as you work through the assignments.
- What is HTML? - HTML is the standard markup language for web pages (hyper text markup language)
- What is an HTML element? - labels a piece, such as a heading, paragraph, link, etc.
- What is an HTML attribute? - provides additional information about element. Comes in the form of a name/value pair
- What is the difference between a class and an id? When would you use one vs. the other? - a class is useds to specifiy a class for an HTML element - this allows you to keep styling similar between different elements. An id is unique, and can only apply to one element at most. An id specifies a unique id for an HTML element - classes can describe multiple elements, so the usage is different.