POST MIDTERM Flashcards
What does semantic mean?
Meaning.
What is the purpose of semantic tags?
Rather than generic tags like div for division, the new semantic tags all describe the content of the tag.
What do outliners do?
Outliners can be used as well to generally determine content or what the parts of the page are about.
What is HTML5?
HTML5 is a reworking of the organization of HTML, CSS and JavaScript.
What are five semantic tags?
< header >, < footer >, < nav >, < main >, < article >, < section >, < aside >, < figure >, < figcaption >, < details >, < summary >, < mark >, < time >.
What is <header>?
The top part of a page or section.
What is <footer>?
The bottom part of a page or section.
What is <nav>?
The place for interfaces like menus.
What is <main>?
The main content area (not header, footer, nav).
What is <article>?
A self-contained composition (document or such).
What is <section>?
A chapter, etc. of an article or the main content.
What is <aside>
Supporting content or related information.
What is <figure>?</figure>
Diagrams, pictures, illustrations, etc.
What is <figcaption>?
Text to describe a figure.
What is <details>?</details>
Extra information that can be viewed.
What is <summary> and what can it only be used for?
A summary title for the detail tag only.