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

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;

123 Cards in this Set

  • Front
  • Back
Start/end tags of the HTML document
<HTML></HTML>
Identifies the document head
<HEAD></HEAD>
Meta-info about document (lives in head)
<META>
Binds elemet to HTTP response header
<META HTTP-EQUIV="name">
Refresh content every n seconds
<META HTTP-EQUIV="Refresh" CONTENT="n">
Refresh content in n seconds by jumping to URL
<META HTTP-EQUIV="Refresh" CONTENT="n; URL">
Denotes title of HTML page
<TITLE></TITLE>
Specifies body of document
<BODY></BODY>
Background texture/image
<BODY BACKGROUND="URL"></BODY>
Background color
<BODY BGCOLOR=="#RRGGBB" or <"colorname"> </BODY>
Text color
<BODY TEXT="#RRGGBB"> or <"colorname"></BODY>
Link color
<BODY LINK="#RRGGBB"> or <"colorname"></BODY>
Visited link color
<BODY VLINK="#RRGGBB"> or <"colorname"></BODY>
Active link color
<BODY ALINK="#RRGGBB"> or <"colorname"></BODY>
Heading
(n=1-6, with 1 as the largest heading)
<Hn></Hn><H1></H1>
Align heading 3.0
<Hn ALIGN=LEFT|CENTER|RIGHT|NOWRAP|CLEAR></Hn>
Text in monospace computer code
<CODE></CODE>
Teletype font
<TT></TT>
Preformatted text
<PRE></PRE>
Font Size
(n ranges from 1-7; default is 3) <FONT SIZE=n></FONT>
Font color
<FONT COLOR="#RRGGBB"> or <"colorname"></FONT>
Specify font (usually common system fonts)
<FONT FACE="fontname"></FONT>
Specify Base font (values are 1-6)
<BASEFRONT SIZE="value">
Bold
<B></B>
Italic
<I></I>
Underline text
<U></U>
Strikethrough text
<STRIKE></STRIKE>
Subscript text
<SUB></SUB>
Superscript text
<SUP></SUP>
Block indent
<BLOCKQUOTE></BLOCKQUOTE>
Line break
<BR>
Clearing line break
<BR CLEAR=LEFT|RIGHT|ALL>
Center
<CENTER></CENTER>
Division of a document
<DIV></DIV>
Horizontal rule
<HR>
Aligns horizontal rule
<HR ALIGN=LEFT|CENTER|RIGHT>
Thickness of horizontal rule
(n=number of pixels)
<HR SIZE=n>
Width of horizontal rule
(n=number of pixels)
<HR WIDTH=n>
Width of horizontal rule dfined by percentage of page
(n=number of pixels)
<HR WIDTH=%>
Solid black horizontal rule
<HR NOSHADE>
Prevents line break
<NOBR>
Paragraph return
<P></P>
Align paragraph
<P ALIGN=LEFT|CENTER|RIGHT>
Preformatted (displayed with browser default font, usually Courier)
<PRE></PRE>
Display image
<IMG SRC="URL">
Display image
<IMG SRC="URL">
Align image relative to text baseline
<IMG SRC="URL' ALIGN=TOP|BOTTOM|MIDDLE>
Align image relative to page
<IMG SRC="URL" ALIGN=LEFT|RIGHT>
Alternative text displayed when images are turned off; text displayed as tool tips in browsers
<IMG SRC="URL" ALT="alttext">
Image is an imagemap
<IMG SRC="URL" ISMAP>
Definition list
<DL></DL>
Image dimensions (in pixels)
<IMG SRC="URL" WIDTH="n" HEIGHT="n">
Image border (in pixels)
<IMG SRC="URL" BORDER=n>
Specifies horizontal or vertical spacing (in pixels)
<IMG SRC="URL" HSPACE=n VSPACE=n>
Specifies low-res version of images.
<IMG SRC="URL" LOWSRC="URL">
Definition
<DD>
Definition term
<DT>
Ordered list
<OL></OL>
Start numbering at specific number list
<OL START="n"></OL>
Format of list items (caps, small, numerical, roman, or default)
<OL TYPE=A|a|I|i|1>
Unordered list
<UL></UL>
Compact version of unordered list
<UL COMPACT></UL>
Specifies bullet style
<UL TYPE=DISC|CIRCLE|SQUARE>
Contols format of list item
<LI TYPE=A|a|I|i|1>
List item
(bullet when used with <UL>, NUMBERED LIST WITH <OL>)

<LI>
Define Form
<FORM ACTION="URL" METHOD=GET|POST></FORM>
Input feild for HTML form
<INPUT TYPE="TEXT|PASSWORD|CHECKBOX|RADIO|SUBMIT|RESET">
Field name
<INPUT NAME ="feildname">
Checked checkboxes or radio boxes
<INPUT CHECKED>
Feild size (in characters)
<INPUT SIZE=n>
Max length in charachters
<INPUT MAXLENGTH=n>
Selection list
<SELECT></SELECT>
Name of list
<SELECT NAME="listname"></SELECT>
n=number of options
<SELECT SIZE=n></SELECT>
Option (items that can be selected)
<OPTION>
Input box size
<TEXTAREA ROWS=n COLS=n></TEXTAREA>
Name of box
<TEXTAREA NAME="boxname"></TEXTAREA>
Defines table
<TABLE></TABLE>
Table border (on or off)
<TABLE BORDER></TABLE>
Table border (width of table border)
<TABLE BORDER=n></TABLE>
Cell spacing
<TABLE CELLSPACING=n>
Cell padding
<TABLE CELLPADDING=n>
Desired width (in pixels)
<TABLE WIDTH=n>
Width percent (percentage of page)
<TABLE WIDTH=%>
Specifies table
<CAPTION ALIGN=TOP|BOTTOM></CAPTION>
Cell spacing
<TABLE CELLSPACING=n>
Cell padding
<TABLE CELLPADDING=n>
Desired width (in pixels)
<TABLE WIDTH=n>
Width percent (percentage of page)
<TABLE WIDTH=%>
Specifies table
<CAPTION ALIGN=TOP|BOTTOM></CAPTION>
Table row
<TR></TR>
Alignment of row
<TR ALIGN=LEFT|RIGHT|CENTER VALIGN=TOP|MIDDLE|BOTTOM>
Table header
<TH></TH>
Alignment of header
<TH ALIGN=LEFT|RIGHT|CENTER VALIGN=TOP|MIDDLE|BOTTOM>
No line breaks
<TH NOWRAP>
Columns to span
<TH COLSPAN=n>
Rows to span
<TH ROWSPAN=n>
Desired width (in pixels)
<TH WIDTH=n>
Width percent (percentage of table)
<TH WIDTH=%>
Table cell (must appear within table rows)
<TD></TD>
Alignment of cell
<TD ALIGN=LEFT|RIGHT|CENTE VALIGN=TOP|MIDDLE|BOTTOM>
No line breaks
<TD NOWRAP>
Columns to span
<TD COLSPAN=n>
Rows to span
<TD ROWSPAN=n>
Desired width (in pixels)
<TD WIDTH=n>
Width percent (percentage of table)
<TD WIDTH=%>
Hosts the frame elements
<FRAMESET></FRAMESET>
Column Width
<FRAMESET COL=n>
Row height
<FRAMESET ROWS=n>
Frame Spacing-adds additional spaces between frames
<FRAMESET SPACING=1|0>
Single Frame
<FRAME SRC="URL">
Floating frame
<IFRAME SRC>="URL">
Frame alignment
<ALIGN=LEFT|CENTER|RIGHT>
Frame border
(1 is default, 0 is no border)
<FRAME BORDER=1|0>
Frame Name
NAME="name"
Prevents resizing of frame
NORESIZE
Scrolling frame
SCROLLING=yes|no
Frame height (in pixels)
MARGINHEIGHT="n"
Frame width (in pixels)
MARGINWIDTH="n"
Link will load in full body of window
TARGET="_top"
Link will load in frame where link was clicked
TARGET="_self"
Link will load in the immediate FRAMESET parent
TARGET="_parent"
Link will load in the frame specified by frame name
TARGET="_framename"