• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/15

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

15 Cards in this Set

  • Front
  • Back
<html>

The HTML element (or HTML root element) represents the root of an HTML document. All other elements must be descendants of this element.
<base>

The HTML element specifies the base URL to use for all relative URLs contained within a document. There can be only one element in a document.
<head>

The HTML element provides general information (metadata) about the document, including its title and links to/definitions of scripts and style sheets.

<link>

The HTML element specifies relationships between the current document and an external resource. Possible uses for this element include defining a relational framework for navigation. This Element is most used to link to style sheets.

<meta>

The HTML element represents any metadata information that cannot be represented by one of the other HTML meta-related elements (<base>, <link>, <script>, <style>, or <title>)

<style>

The HTML element contains style information for a document, or part of a document. By default, the style instructions written inside that element are expected to be CSS.

<title>

The HTML element defines the title of the document, shown in a browser's title bar or on the page's tab. It can only contain text, and any contained tags are ignored.

<address>

The HTML element supplies contact information for its nearest <article> or <body> ancestor; in the latter case, it applies to the whole document.

<article>

The HTML element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). This could be a forum post, a magazine or newspaper article, a blog entry, an object, or any other independent item of content. Each should be identified, typically by including a heading (<h1>-<h6> element) as a child of the <article> element.

<footer>

The HTML element 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 links to related documents.

<header>

The HTML element represents a group of introductory or navigational aids. It may contain some heading elements but also other elements like a logo, wrapped section's header, a search form, and so on.

<h1> to <h6>

Heading elements implement six levels of document headings, is the most important and is the least. A heading element briefly describes the topic of the section it introduces. Heading information may be used by user agents, for example, to construct a table of contents for a document automatically( just like the fixed sider bar of this page on the right).

<hgroup>

The HTML Element (HTML Headings Group Element) represents the heading of a section. It defines a single title that participates in the outline of the document as the heading of the implicit or explicit section that it belongs to.

<nav>

The HTML element (HTML Navigation Element) represents a section of a page that links to other pages or to parts within the page: a section with navigation links.

<section>

The HTML element represents a generic section of a document, i.e., a thematic grouping of content, typically with a heading. Each of this element should be identified, typically by including a heading (<h1>-<h6> element) as a child of the <section> element.