HTML Flashcards
HTML
HTML, or HyperText Markup Language is a tag-based language that gives structure and meaning to content.
The root element in an HTML document.
Specifies the base URL to use for all relative URLs contained within a document.
The section of an HTML document that stores metadata and configuration settings for an HTML document, including links to referenced scripts and stylesheets.
A metadata content element that specifies relationships between the current document and an external resource, most frequently used to link stylesheets.
A tag used to markup various kinds of metadata that cannot be expressed using other metadata content elements (title, base, link, style or script).
A metadata content tag that contains style information for a document.
The metadata content element that defines the title of the document which is shown in a browser’s title bar or on the page tab.
<address> </address>
The content sectioning tag that supplies contact information for its nearest or ancestor; in the latter case it applies to the whole document.
The content sectioning element that represents a self-contained composition in a document, page, application or site, which is intended to be independently distributable or reusable. This could be a forum post, a magazine or newspaper article, a blog entry, or any other independent item of content.
The content sectioning element that represents a section of content that is tangentially connected to the rest, which could be considered separate from that content.
A content sectioning tag which represents a footer for its nearest sectioning content or sectioning root element. A footer typically contains information about the author of the section, copyright data, or related links.
A content sectioning tag which represents a group of introductory or navigational aids.
######
The heading elements implement six hierarchical levels of document headings where
is the most important and ###### is the least. A heading element is a content sectioning element that briefly describes the topic or the section it introduces.
Represents the heading of a section. It defines a single title that participates in the outline of the document using the first heading element of highest rank. In other words, this element groups several headings, contributing only the main one tot he document outline.
🔬Experimental