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

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;

12 Cards in this Set

  • Front
  • Back
HTML documents are?
simply text files
HTML converter
takes text in one format and converts it to HTML code
HTML document has what 2 elements?
document content
tags
Tag syntax
<Tag Name Properties> Document content </Tag Name>
ex:<H1 ALIGN=CENTER>Title of Document</H1>
HTML codes
<HTML>
<HEAD>
<TITLE>The Document by Me</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
How to create a paragraph
Use <P> to begin the paragraph
Use </P> to close the paragraph
Creating lists
ordered list <ol>
unordered list <UL>
definition list <DL>
Logical Character Tags
EM
STRONG
CODE
KBD
VAR
CITE
any combination
Physical Character Tags
B
I
TT
BIG
SMALL
SUB
SUP
horizontal line
<hr />
insert a image
<img src= "file.txt" alt="text"/>
link to webpages
<ahref= "http://www.facebook.com"> Facebook</a>