So, you want to make a Web Page! INDEX & Quick Reference |
![]() |
Monospaced font <TT>xxxxx</TT>
Change font size (sizes:1-7) <FONT SIZE=5>xxxxx</FONT>
Change the font name (face) <FONT FACE="arial">xxxxx</FONT>
Change the font color <FONT COLOR="#0000FF">xxxxx</FONT>
Background colors <BODY BGCOLOR="#xxxxxx">
Change text, link, etc color for whole page <BODY BGCOLOR="#xxxxxx" TEXT="#xxxxxx" LINK="#xxxxxx" VLINK="#xxxxxx" ALINK="#xxxxxx">
Space code (special character for a space)
A whole bucketful of special characters
Multiple blank lines <BR>
Background images <BODY BACKGROUND="xxxxx.gif"> (or .jpg)
Inserting images <IMG SRC="xxxxx.gif" WIDTH=123 HEIGHT=456>
Image sources (SRC) explained in detail
Making an image a link <A HREF="http://xxxxx"><IMG SRC="xxxxx.gif" WIDTH=123 HEIGHT=456></A>
The ALT attribute <IMG SRC="xxxxx.gif" WIDTH=123 HEIGHT=456 ALT="Big Pic">
Get rid of the blue border around an image link <A HREF="http://xxxxx"><IMG SRC="xxxxx.gif" WIDTH=123 HEIGHT=456 BORDER=O></A>
Netscape's 216 color chart (image)
Add a link <A HREF="http://xxxxx">abcdefg</A>
Add an email link <A HREF="mailto:xxxxx@xxx.xxx"> abcdefg</A>
Making an image a link <A HREF="http://xxxxx"><IMG SRC="xxxxx.gif" WIDTH=123 HEIGHT=456></A>
Get rid of the blue border around an image link<A HREF="http://xxxxx"><IMG SRC="xxxxx.gif" WIDTH=123 HEIGHT=456 BORDER=O></A>
Link to a particular section of a page <A HREF="http://xxxxx#cheesewiz">About Cheese Wiz</A>
Centering stuff <CENTER>xxxxx</CENTER>
Pull in your margins with <BLOCKQUOTE>
Ordered and Unordered lists
<UL> (or OL)
<LI>List item
</UL>
Definition list
<DL>
<DT>Definition title
<DD>Definition item
</DL>
Horizontal Rule <HR ALIGN=left|right|center WIDTH=80% SIZE=3 NOSHADE>
Skeleton HTML document- minimum tags required
<HTML>
<HEAD>
<TITLE>My big ole bad page!</TITLE>
</HEAD>
<BODY>
Hello Joe!
</BODY>
</HTML>
Background colors <BODY BGCOLOR="#xxxxxx">
Document Title <TITLE>My Big ole bad page!</TITLE>
Background images BACKGROUND="xxxxx.gif" (or .jpg)
Tags in combination- Overlapping vs Nested tags
More about Overlapping vs Nested tags
Space code (special character for a space)
A whole bucketful of special characters
Centering stuff <CENTER>xxxxx</CENTER>
Multiple blank lines <BR>
|