Kid's Guide Publish!
 
 
  Use the Kid's Guide to learn how to write web pages!
then use Publish! to learn how to get your pages live to the Internet!
BACK       

Kid's Guide

1 - Tags
2 - Page Sections
3 - Format/Nesting
4 - Head Tags
5 - Body tags
6 - Text Decoration
7 - Lists
8 - Colour
9 - Source
10 - Images
11 - Links/Anchor Tag
12 - Special Charaters
13 - Tables
14 - Frames

Click me for Web Safe Colour Chart

Colours

Now it is time to add some colour to your site. There are 256 Web Safe colours – this means that these colours look the same on all the many different versions of browsers. You tell the browser which colour you want by a special code – called hexadecimal code. Colours are identified by a special 6 digit code made up of numbers and letters.
ex.
Hex Code Color
#FFFFFF  
#FFFFCC  
#FFFF99  
#FFFF66  

There are two special commands for adding colour; bgcolor and color.

bgcolor = back ground colour. Again, notice how color is spelled the American way. To change the colour of your page the bgcolor command inside of the body tag.

<body bgcolor="#ffee00">

To add colour to the text you use the color command. You tell the <font> what color you want it be like this:

<font color="#00eeff">This is my first web page.</font>

Put it all together!

<html>
    <head>
        <title>Jet Internet</title>
        <meta name="keywords" content="Jet Internet, web design">
        <meta name="description" content="This is my first web site.">
    </head>
    <body bgcolor="#ffee00">
        <p align="center"><font color="#00eeff" face="Comic Sans Ms" size="2">This is my first web page.</<font></p>
    </body>
</html>

 

 
Safety and Privacy Policies We'd love to get your feedback! Who Made This?

Copyright © 2002 HTML4KIDSTM. All rights reserved.


Hi! I'm Jet Internet! I'm here to guide you through the site and help you with any questions you may have. When you see and text in red slide your cursor over the word then look here in my Speach bubble. I will be able to help with defining, explaining and providing extra information on that topic.

bgcolor
Background Colour / bgcolor="#hexidecimal value" By using a hexdecimal value you can tell the browser what colour (remember to spell it the American = color) you want the background of an element to be.

color
color="#hexidecimal value" By using a hexdecimal value you can tell the browser what colour (remember to spell it the American = color) you want an element to be.