| A | B |
| HTML | Hyper Text Markup Language |
| Hyper Text | Ability to read and navigate text in a non-linear way based on what you want to know next. |
| Hyper Link | Clickable text that takes you to another page. |
| Browser | An application that allows you to search the Web. |
| Web Server | A computer that serves web pages. |
| Web Page | An HTML document. |
| Home Page | The first page in a web site. |
| Web Site | A collection of web (HTML) documents in one location. |
| HTML documents contain... | Elements and text. |
| Elements | Tell the browser what to do. Elements are made of TAGS and ATTRIBUTES. |
| Tags or anchors | Keywords encased in brackets (ie. <P>) |
| Attributes | Variables that alter how a tag looks or works. |
| Minimum HTML tags for a web page | <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY> </BODY> </HTML> |
| New Paragraph | <P> |
| Bold | <B> </B> |
| Italics | <I> </I> |
| Underline | <U> </U> |
| Break (line feed) | <BR> |
| Center | <CENTER> </CENTER> |
| Horizontal Rule | <HR> |
| Tags needed for unordered lists | <UL> <LI> </UL> |
| Tags needed for ordered lists | <OL> <LI> </OL> |
| Link Tag | <A HREF="http://www.WebAddressHere.com">TextForTheLinkHere</A> |
| What does HREF do? | Makes the link clickable. |
| Web Image Types | .gif (Graphics Interchange Format) and .jpg (Joint Photographic Expert Group) |
| Image Tag | <IMG SRC="ImageName.gif"> |
| Image Tag as a Clickable Link | <A HREF="http://www.WebAddressHere.com"><IMG SRC="ImageName.gif"></A> |
| Background Color | <BODY BGCOLOR="#123456" TEXT="#FFFFFF" LINK="#FFF000"> |
| Minimum Table Tags | <TABLE> <TH> </TH> <TR> </TR> <TD> </TD> </TABLE> |
| Table Caption | <CAPTION> </CAPTION> |
| How many BODY tags can you have? | ONE |
| What is the last HTML tag in a web document? | </HTML> |
| Header 1 Tag | <H1></h1> |
| Header 2 Tag | <h2> </h2> |
| Header 3 Tag | <h3> </h3> |
| Header 4 tag | <h4> </h4> |
| Header 5 tag | <h5> </h6> |
| Header 6 tag | <h6> </h6> |
| What is the first HTML tag on a page | <!DOCTYPE html> |
| An ordered lists means? | Numbered - 1., 2., 3. etc. |
| An unordered list means? | bulleted |
| List tag | <li> </li> |