HTML 5 Terms Flashcards
What are “Web Semantics?
1) Allows you to describe more precisely what your content is.
2) The process of using web languages and syntaxes to add meaning to content.
HTML5 Semantics helps search engines accurately index your content, and make it easier to read.
https://goo.gl/G9pHSy
What are “Block Level Elements”?
1) Block Level Elements occupy their own space within normal HTML document flow and can be used to group content inside their respective blocks.
2) A block-level element occupies the entire space of its parent element (container), thereby creating a “block.”
https: //goo.gl/xFRXVL
What are “In-line level elements”?
An inline element occupies only the space bounded by the tags that define the inline element.
considered to be text-level and that means they appear in the normal flow of the text
https://goo.gl/59CCj5
What are HTML5’s “Content Models?”
Rules defining what kind of content HTML elements can have.
MDN: https://goo.gl/KcMmUa
W3C: https://goo.gl/CWvqPx
What does the “Flow Content” Model Contain?
Elements that would be included in the normal flow of the document. Mostly tags that can fit under the tag.
W3C: https://goo.gl/NQ6itU
What does the “MetaData Content” Model Contain?
Content that sets up the presentation or behavior of the rest of the page’s content. You’ll primarily find these elements in the head of the document
W3C: https://goo.gl/VAWaBZ
What does the “Phrasing content” Model Contain?
The text of the document and elements that are used to markup the text within paragraph-level structures. Same as in-line level elements from the HTML4 specification.
W3C: https://goo.gl/eZRLqY
What does the “Embedded content” Model Contain?
Any content that imports other resources into the document.
W3C: https://goo.gl/9ub8fR
What does the “Heading content” Model Contain?
Defines the header of a section which can either be explicitly marked up with sectioning elements or implied by the heading content itself.
W3C: https://goo.gl/z6Zl82
What does the “Sectioning content” Model Contain?
Defines the scope of headings and footers. Using these elements will create a new section within a document
W3C: https://goo.gl/EBrdq9
What does the “Interactive content” Model Contain?
Any content specifically intended for user interaction.
W3C: https://goo.gl/86i25U
What are “Top-Level” Elements?
Elements that appear only as children of the root
is the root of the HTML Document
What are “Sectioning Elements”?
Elements are used in place of <div> tags to section content, and make the page more semantic
Examples are : , ,, and
</div>
What are “Semantic Grouping” Elements?
Elements designed to group content together in meaningful ways.
Examples are: ,, and
What is and What does the “HTML Shim/Shiv Code” do?
It is a Conditional Comment/Short snippet of Javascript code
Tells internet Explorer to create these HTML5 elements (Less than IE 9)