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

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;

25 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 element 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>
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>