HTML5 Semantic Tags Flashcards
specifies independent,
self-contained content.
<article>
</article>
Potential sources for the ______element would
be, forum posts, blog posts, new stories and
comments.
article
defines some content aside
from the content it is placed in.
<aside>
</aside>
specifies additional details
that the user can view or hide on demand.
<details>
</details>
can be used to create an
interactive widget that the user can open and
close.
<details> tag
</details>
specifies self-contained
content, like illustration, diagram, photos,
code listing, etc.
<figure> tag
</figure>
defines a caption for a
<figure> element.
</figure>
<figcaption> tag
</figcaption>
now defines a footer for a
document or section.
<footer> tag
</footer>
A _____ element typically contains authorship
information, copyright information, site map,
contact information, back to top links and
related documents.
footer
represents a container
for introductory content or a set of
navigational links.
<header> element
</header>
is typically used and contains one or
more heading elements, logo or icon and
authorship information. You can also include
the navigation here.
header
specifies the main content of a
document.
<main>
</main>
defines marked text.
<mark> tag</mark>
tag defines a set of navigation links.
Notice that not all links of a documents should
be inside the navigation tag element.
<nav>
</nav>
defines sections in a
document such as chapters, headers, footers,
or any other sections of the document.
<section> tag
</section>