Java Games: Flashcards, matching, concentration, and word search.

HTML for Beginners

Learn the basic tags of HTML.

AB
HTMLHyper Text Markup Language
Hyper TextAbility to read and navigate text in a non-linear way based on what you want to know next.
Hyper LinkClickable text that takes you to another page.
BrowserAn application that allows you to search the Web.
Web ServerA computer that serves web pages.
Web PageAn HTML document.
Home PageThe first page in a web site.
Web SiteA collection of web (HTML) documents in one location.
HTML documents contain...Elements and text.
ElementsTell the browser what to do. Elements are made of TAGS and ATTRIBUTES.
Tags or anchorsKeywords encased in brackets (ie. <P>)
AttributesVariables 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>


Mac Williams Middle School
NC

This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities