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

Tags

Don’t believe what anybody else tells you! The Internet is about tags. Tags control everything: how words look, where pictures are shown, what colours you can see and when things change.

This is what a pair of tags look like.
< > </ >

Each single tag has a mirror set of < >, these are called carrots. The < tells the browser that a tag is starting and the > tells the browser that the tag is closing.

In every pair, there is an opening tag < > and a closing tag </ >. You can tell the difference between them by the closing tag always has a / after the first <.

The opening tag tells the browser that you want it to perform an action. The closing tag tells the browser with the /, called a forward slash, that you want that action to stop.

It is very important that you remember that every opening tag MUST have a closing tag!

Rule ONE: Whenever you open a tag you must close the tag.

Once you open a tag you need to tell the browser which action you want it to do. The best way to explain how to do that is to show you.

This is the first set of tags you will need to make your web page:
<html></html>

In between the carrots are the letters html. This stands for Hypertext Mark Up Language. When the browser sees those letters it knows that it needs to make a web page.

Whenever you write tag names, called identifiers, like html, use lower case letters. It makes reading your code (all of the tags) much easier.

Rule TWO: Always use lower case to write tag names.

 

 
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.

Tags
opening tag < > and a closing tag </ >
Rule ONE: Whenever you open a tag you must close the tag.

Identifiers
tag names, like: <html>, <body>, <p> ...

Code
The combination of the text/content, images and HTML will make the code that creates your web page.