HTML PAGE DESIGN LINKS html page design Basic html forms Text and font tags html tables Image tags JavaScript Web hosting Free tracking Free traffic Free banner ads ON THIS PAGE color codes special characters |
Basic HTML tags and web page designThis site explains html basics and web site page layout using html tags. Without getting to technical. This site is a great guide for first time webmasters. A quick easy HTML reference guide for page design: The Quick links on the top left menu on this page will take you to more detailed information. The charts below contain: HTML common tags reference guides with html tag format and attributes. Html example tags for basic page design and html tags for page tables using columns and rows. Find tags for inserting images , background images and ads into your web pages Code for linking with images or text links. Html common color codes and special characters Working with images and image tags |
||||||
HTML | Description | Web Site HTML Page Code Example | Browser Displays | ||||
<!-- --> | comment | <!--This Tag is for personal helpful remarks in HTML code --> | Browser will show nothing | ||||
<HTML> | hypertext markup language |
<HTML> <Head><Title></Title><Meta></Head> <!--START THE BODY OF MY PAGE --> <Body><Table><Caption>My Page </Caption> <TR><TD>My Basic Page <BR> Text here <BR><BR> End first table row </TD></TR> <TR><TD>2nd Row image <BR> <IMG></TD></TR> </Table></Body></HTML> |
|
||||
<HEAD> | head | <HEAD>Surrounds Title and meta tags. Can contain CSS classes links & script</HEAD> | Browser displays nothing | ||||
<TITLE> | title | <TITLE>Title of your page</TITLE> | Displays in title bar | ||||
<META> | meta | <META name="Description"content="Description of your site"> | Browser displays nothing | ||||
<META> | meta | <META name="keywords" CONTENT="keyword,keyword"> | Browser displays nothing | ||||
<META> | meta | <META name="robots" CONTENT="FOLLOW,INDEX"> | Browser displays nothing | ||||
<BODY> | body | <BODY>Contains All HTML code for your page content</BODY> | Your Web Page | ||||
<BR> | break | Breaks to next line<BR>text or images | Breaks to next line text or images |
||||
<B> | bold | <B>Makes Text Bold</B> | Makes Text Bold | ||||
<CENTER> | center | <CENTER>Centers text and images</CENTER> |
|
||||
<FONT> | font | <FONT FACE="Courier">Courier Font</FONT> | Courier Font | ||||
<FONT> | font | <FONT COLOR="FF0000">Red Text</FONT> | Red Text | ||||
<FONT> | font | <FONT SIZE="4">Size 4</FONT> | Size 4 | ||||
<FONT color="green" face="courier" size="1">In 1 tag color,face,size</FONT> | In 1 tag color,face,size | ||||||
HTML | Description | HTML Code Example | Browser Displays | ||||
<HR> | horizontal rule |
<HR> |
|
||||
<HR> | horizontal rule |
<HR WIDTH="50%" SIZE="3"> |
| ||||
<HR> | horizontal rule |
<HR WIDTH="50%" SIZE="3" NOSHADE> |
| ||||
<HR> | horizontal rule |
<HR COLOR="RED" WIDTH="75%" ALIGN="left" SIZE="3"> |
| ||||
<IMG src="" | image |
<IMG src="imagefolder/imagefile.jpg or .gif"> Inserts image into your page |
|||||
<IMG src="" | image |
<IMG src="folder/file.jpg" width="100" height="40"> sets size and inserts image into your page |
|||||
<IMG src="" | image |
<IMG src="http//:www.domain/folder/file.jpg" border="5"> sets border size and inserts remote image into your page |
|||||
<A href="" > <IMG src="" |
image |
<A HREF="http://gamesites.iwarp.com"> <IMG src="http//:www.domain/folder/file.jpg" border="0"> </A> inserts remote image link into your page |
|||||
<A href="" > | anchor | <A HREF="http://gamesites.iwarp.com">75% OFF Inkjets</A> inserts text link to Url into your page |
Great Games ! | ||||
<MARQUEE> | marquee | <MARQUEEbgcolor="#FFFF00" loop="-1" scrollamount="2" width="100%">Play Games Online !</MARQUEE> | |||||
HTML | Description | HTML Code Example | Browser Displays | ||||
<BIG> | big text | <BIG>Displays big text</BIG> | Displays big text | ||||
<I> | italic | <I>Makes italic text</I> | Makes italic text | ||||
<UL> | unordered list |
<UL> <LI>apples <LI>oranges </UL> |
| ||||
<OL> | ordered list |
<OL> <LI>apples <LI>oranges </OL> |
| ||||
<TABLE> <TD> <TR> |
table table data table row |
<TABLE border="1"> <TR><TD>Row 1 </TD></TR> <TR><TD>Row 2 </TD></TR> </TABLE> |
| ||||
<TABLE> <TD> <TR> |
table table data table row |
<TABLE border="1"> <TR><TD>Col 1 </TD> <TD>Col 2 </TD></TR> <TR><TD>Col 1 </TD> <TD>Col 2 </TD></TR> </TABLE> |
|
COMMON HTML COLOR AND CHARACTER CODES In the below reference chart are the 16 basic html color names and codes. When writing html tags you can use the color name or hexadecimal code in each box to get the html background color it represents. When starting out keep your colors simple all computers don't see colors the same way. This is an example of html code that changes a font color to red. HTML Example with name:< font color ="red">RED< / font > Or HTML with code:< font color ="#FF0000">RED< / font > Your result would be RED Back to top of page |
||||
Quick chart for color names and html hexadecimal color codes | ||||
White #FFFFFF | Black #000000 | Gray #808080 | Silver #C0C0C0 | |
Red #FF0000 | Purple #800080 | Maroon #800000 | Fuchsia #FF00FF | |
Blue #0000FF | Navy #000080 | Teal #008080 | Aqua #00FFFF | |
Green #008000 | Olive #808000 | Lime #00FF00 | Yellow #FFFF00 | |
Special HTML characters used in web site design Listed below are some of the more common html special character codes. These special characters can't be typed directly into html pages. They are not on your keyboard and must be html coded. In this reference chart you will find the html code for the special symbols temperature degree symbol,e acute,copyright symbol,registered and trade mark symbols. The micro sign , paragraph sign and the cent sign. The html code format for these symbols is as follows. FORMAT: the ampersand (&) followed by the alpha code and then a semicolon ( ; ) OR the ampersand (&) followed by the number sign (#) then numeric code then a semicolon. EXAMPLE: The trade mark ™ CODE: ™ or &# 8482; |
||||
Quick chart HTML code for special characters not on your keyboard Back to top of page |
||||
° Temperature degrees ° CODE: ° or ° |
é e acute symbol é CODE: é or é |
© copyright symbol © CODE: © or © |
® Registered symbol ® CODE: ® or ® |
|
™ Trade Mark ™ CODE: ™ or ™ |
µ Micro sign µ CODE: µ or µ |
¶ paragraph sign ¶ CODE: ¶ or ¶ |
¢ Cent sign ¢ CODE: ¢ or ¢ |
|
÷ Division sign ÷ CODE: ÷ or ÷ |
£ Pound sterling £ CODE: £ or £ |
¥ Yen sign ¥ CODE: ¥ or ¥ |
± Plus or minus ± CODE: ± or ± |
|
§ Section sign § CODE: § or § |
ñ Small n tilde ñ CODE: ñ or ñ |
¬ Not sign ¬ CODE: ¬ or ¬ |
ß sz ligature ß CODE: ß or ß |
|
In the chart below is HTML code for special characters used by HTML tags These special characters may be mistaken for html tag code if they are typed into your html pages. The html code format for these symbols is as follows. FORMAT: the ampersand (&) followed by the alpha code and then a semicolon ( ; ) OR the ampersand (&) followed by the number sign (#) then numeric code then a semicolon. EXAMPLE: Less-than sign < CODE: < or &# 60; |
||||
HTML code for special characters used by HTML tags | ||||
< Less-than sign < CODE: < or < |
> Greater-than sign > CODE: > or > |
& ampersand & CODE: & or & |
" double quotation " CODE: " or " |
|
HELPFUL LINKS FOR YOUR WEBSITE |