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

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;

34 Cards in this Set

  • Front
  • Back
what does HTML stand for?
hyper text mark up language
what are HTML tags?
set of characters enclosed in keyboard symbols used to interpet text and images in a browser.
what is a browser?
world wide web; example internet explorer.
what is a text edior?
a program like notepad is considered a text editor.
what are hyperlinks?
links webpages together.
what are wickets?
the "less than and "greater" brackets that encloses the tag elements; for example ;the tag element <title>
what is the 1st tag of a HTML document?
<HTML>
What is the 2nd tag of a HTML document?
<HEAD>
what is usually the 3rd tag of a HTML document?
<TITLE>
what is usually the 4th tags of a HTML document?
<body>
explain an opening tag. give an example.
the left wicket<(or "less than sign) followed by the tag element, and the right wicket> (or greaterthan sign)
explain a closing tag. give an example.
a forward slash (/) follows the opening wicket and precedes the tag element.
what are the opening and clothing tag for HTML.?
<HTML> opening tag
</HTML)closing tag
what are the opening and closing tags for head?
<head>opening
</head>closing
what are the opening and closing tags for body?
<BODY> opening tag
</BODY> closing tag
what are the two functions of a web browser?
interpert HTML documents
display HTML documents
non-empty tags
includes an opening and closing tag with text in the middle.
empty tag
do not occur in tag set;they stand alone.
<H1></H1>
<H6></6>
The largest heading level
the smallest heading level
<B></B>
<I></I>
<U></U>
bold
italic
underline
<br>
inserts a line break immediately following the <BR> tag. forcing text to the next line and justify to the left.
<P>
is used to mark the beginning of a new paragraph or block of text.
<BLOCKQUOTE>
Indents blocks of text. and is commonly used for quotes and citattions.
<UL></UL>; non-empty
<OL></OL>; non-empty
<LI>;empty
unoredered list (bullets)
ordered list (numbered>
used for bullets and number list.
<HR>
horizontal rule
<FONT></FONT>
style of text
ALIGN=left
ALIGN=center
ALIGN=right
text is to the left
text is in the center
text is to the right
<IMG>
image tag
,<body bgcolor=code>
<body text=code>
background color
text color
<A></A>
anchor tag defines the beginning and end of a hyperlink.
what are tag attributes?
they provide addtional intructions to a web broswer that is placed with a tag.
HTTP
Transfer protocal by which info is tranferred between a server computer and a client computer.
URL'S
the address of web pages.
comment tag
<!-->
allows you to place text that you do not wish to have appear in the user's browser in an html doc.