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

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;

26 Cards in this Set

  • Front
  • Back
Attributes
A quality that describes a certain aspect of the element.
Readability
Coding techniques that make finding and changing code a simple operation.
Character Set
Specifies what charset will be used in the HTML document. It usually specifies the Unicode character set
Container Tags
Tags that come in pairs. Container tags use starting and ending tags. These tags are also called opening and closing tags.
Document Structure Tags
The HTML tags that form web pages
Document Type Declaration
<!DOCTYPE>
The first tag in an HTML document. It informs the interpreter what version of HTML the Web page is written in.
<meta> tag
Specifies various information or metadata about the document
<link> tag
Style sheet references are specified with the Link tag. It must point to a CSS file that is in simple ASCII text.
Wicket
Angle Brackets
HTML Flavor
Different types of the HTML Declaration HTML version 4.01 has three flavors Transitional, Strict, Framset
Elements
The main instruction of the tag. An element is required in every tag.
Empty Tags
Tags that stand alone. Empty tags are those that do not directly format a specified block of text, and therefore one tag can execute the instruction.
Fixed Width Font
Text that is preformatted
Nesting
Placing a pair of tags within another pair of tags.
Text Level Element
Elements that can affect something as small as a character or a word
Block Level Element
Markup elements that affect an entire paragraph or multiple paragraphs
<em>
Italic text used for emphasis use rather thank <i>
<pre>
All line breaks and spacing will be displayed in the browser exactly as it appears in the original text.
<blockquote>
Indents and centers a block of text.
Do not use within <p> tags or <h1> tags.
<strong>
Applies bold text but is different from <b> because it emphasizes text including with screen readers.
No such thing as “bold speech”
Lists
Compound, block level elements. Encompassing list item tags. A paragraph break automatically precedes and follows the entire list. Individual list items are separated automatically by single line breaks.
Unicode
A character set widely recognized as a standard in today’s Web page
Value
Gives a value to the element and its attribute. Values are optional in a tag unless required by a specified attribute to the element. Values are used only with attributes; elements do not take values directly. Values should be surrounded by quotation marks.
Forward Compatibility
Designing code to always be cleaner and allow an easier transition to updated standards in the future.
Website File Structure
The organization of your files
Comments
Syntax to add notes within an HTML code within Ntoes will not appear on the page.
<!—comment text here - ->