• 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/28

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;

28 Cards in this Set

  • Front
  • Back

Container Tags

Tags that come in pairs

Empty Tags

Tags that stand alone

An Element

provides the main instruction of the tag

An Attribute

specifies a quality or describes a certain aspect of the element

A Value

gives value to the element and its attribute

<!DOCTYPE> declaration

The <!DOCTYPE declaration is the first tag in an HTML document. It informs the interpreter what version of HTML the Web page is written in.

<html> tag

The <html> tag is used as a container for the entire HTML document. It nests all code except for the <!DOCTYPE> declaration.

<head> tag

The head section allows you to insert <meta> tags, links to style sheets, and the <title> tag.

<meta> tags

The <meta> tag can specify various information about the document, known as metadata. This metadata can include a document description, revision dates, and keywords to help search engines index the page.

<link> tag

The <link> tag references a style sheet and is recommended HTML5. A style sheet usually has a .css file name extension and a file name similar to the page to which it is linked.

<title> tag

This tag identifies the document title.

<body> tag

This tag begins the body of the document and includes all the content of the web page, such as the text, video, hyperlinks and images.

manifest

an attribute used for offline browsing. It lists the address of the HTMLdocument's cache manifest. The manifest attribute requires each page you wantcached to include the attribute.

lang

configures the page to use a particular language. For instance, a Webdocument written in English would use and a document written inFrench would use .

xmlns

If your content needs to conform to XHTML, then specify the XMLnamespace attribute The default entry is xmlns="http://www.w3.org/1999/xhtml".

charset

specifies the character set used in HTML documents (which is often setby the Web server for HTML documents, rather than by the document itself). Itusually specifies the Unicode character set

name

values include "keywords," "description" and "author. " This attribute mustbe accompanied by the content attribute. The "keywords" value of the name attributeallows you to specify individual words as the value in the accompanying contentattribute; these words are used by search engines to match pages to searchkeywords, and to describe the meaning of the document.

content

When paired with the name attribute, the content attribute values cansupply keywords, author name, page descriptions and so forth, as previouslydescribed.

<br/>

Line Break

<p> </p>

Paragraph break

<h1> </h1>

Heading levels

<blockquote>

Indents

<strong>

Bold text

<em>

Italic text

<ol>

Ordered List

<ul>

Unordered List

<li>

List Item

<!-- comment text here -->

hidden comments