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

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;

66 Cards in this Set

  • Front
  • Back
< !DOCTYPE >

The first tag in any HTML doc. Informs the browser what type of HTML the page is being written on.

< html > tag

Tag used as a container for all the document. Covers the whole entire thing besides the < !DOCTYPE >

< head > tag

Head section of document that allows you to insert tags, links to style sheets, and the < title > tag.

< meta > tag

Tag that can specify various information about the document. Includes doc description, revision dates, and keywords to help search engines index the page

< link > tag

References a style sheet and is recommended for HTML5. Style sheet usually has a .css file name extension and a file name similar to the page which it is linked. Tag is placed within the

container tags.
< title > tag

This tag idenifies the document title. Browsers will display the title in the browse's title bar. Is placed within the

container tag.
< body > tag

The tag begins the the body of the document and includes all content of the Web page such as text, video, hyperlinks and images. This tag is placed after the

tag.

Container Tags

Tags that come in pairs. They are used to start and end tags.

Empty Tags

Tags that stand alone. They are those that do not directly form a specified block of test, and therefore one tag can execute the instruction.

Element

Provides the main instructions of the tag. It is required in every tag.

Attribute

Specifies a quality or describes a certain aspect of the element. Many elements require it, but some do not. It is required in a tag only if the element requires it.

Value

Gives value to the element and it's attribute. It instructs the hyperlink, image, and others. It is only required if the element and attributes.

manifest

an attribute used for offline browsing. It lists the address of the HTML document's cache manifest. It is required in each page you want cached to include the attribute.

lang

configures the page to use a particular language. This attribute is helpful for search engines and speech synthesizers. It is universal.

xmlns

if your content needs to conform to XHTML, then this is the specified namespace attribute instead of .

charset

specifies the character set used in HTML documents.

name

values including "keywords", "descriptions", and "author." This attribute must be accompanied by the content attribute. The "description" value of the name attribute allows you to specify entire sentences as the value in the accompanying content attribute.

content

When paired with the name attribute, the content attribute values can supply keywords, author name, page descriptions and so forth.

< p >

Tag used to form paragraphs in the

.
< /br >

Tag used as a break in the page to add an extra space in the document

< h1-6 >

This tag is used to insert a heading into the document. It comes in six different tags.

< pre >

Tag that allows you to display plain-text files in their original format. It is commonly used to display tabular data. This is a container tag.

< blockquote >

Tag that indents all the of the text beneath each header

< strong >

Tag used for bold text

< em >

Tag used for italic text

Ordered List

A numbered list. Uses the < ol > element and requires a closing tag.

Unordered List

a bulleted list. Uses the < ul > element and also requires a closing tag

List item

Specifies list items in an ordered or unordered list. uses the < li > element, and requires a closing tag.

< ! -- Comment text here -- >

You can add hidden comments within HTML source code that will not appear on the page.

< hr/ >

An empty tag in css coding that is used to put a horizontal rule into the document

< a >

Achor tag. Used to make hyperlinks with images, text, or basically anything

href

attribute used to specify the link's hypertext reference for any file, page, or site.

< table >

Creates a table. Contains all other table elements



< caption >

Adds a caption or title which appears above the table by default

< tr >

Contains all data for a table row

< th >

Typically designates cells in the top row or left column. By default, text in a header cell will appear bold and centered.

< td >

Designates table cell contents. By default, the data is left-justified.

Border

Determines the style of the border

Border-collapse

Collapses the borders of adjacent cells into a single border instead of separating them.

border-spacing

Determines the amount of space between cell data and the cell border

Width

Determines how far the table or cell will extend horizontally across the page

Background-color

Determines the background color for table elements

text-align

aligns text horizontally

vertical-align

aligns content verically

< header >

Top of the web page, similar to the header in a word-processing document

< nav >

Defines navigation links, such as hypertext menus to access various pages of the web site

< article >

Web site content, such as company services, articles, blogs, images, and videos.

< aside >

content that is "aside" from the article content, such as advertisements or new feeds

< footer >

bottom of the web page, similar to the footer in a word-processing document

< input type > tag

Input attribute tag that allows people to type within a box to send information to the server.

< form >

This tag creates a user-input Web form by encompassing all the content and fields of the form on the page. A container tag.

Method

Specifies which method the browser will use to send form data to a Web server

Action

Specifies the name and location of the CGI script used to process the form

< textarea > tag

Container tag creates scrolling text area space.

< select >

a container tag used to create single-option and multiple-option select lists.

< option tag >

The options you may click on in a text input

Text Box

A text field into which a user can enter characters

Radio Button

Round option buttons in a group of two or more mutually exclusive options

Check box

Square boxes in a group of two or more non-exclusive options

Single-option select list

A drop-down list of two or more options from which a single selection can be made.

Multiple-option select list.

An exposed list of two or more options, optionally scrollable, from which the user can make multiple selections

Text area

A scrolling text filed into which the user can enter multiple lines of text

Password fieled

A text box that visually masks the entered characters as asterisks.

File Upload

A button and field that allow users to navigate to and select a local file for uploading or other purposes.

Submit Button

A button that, when clicked, causes the forms action statement to process

Reset Button

A button that, when clicked, clears all form data and sets all form fields back to the default values for those fields.