Basics

HTML

Java

Colors

Frames

Tables

Fonts

Graphics

Links

Contact

How do i set up a page?

 

This is really easy. You can copy and paste the code below into your editor (to see what most editors look like click here).

A basic document looks like this:

<HTML>
<HEAD>
<TITLE>Your page title goes here</TITLE>
</HEAD>
<BODY>


* Everything that appears on your page will be entered here, text, images etc. *


</BODY>
</HTML>

 


You can see that the document begins with <HTML> and ends with </HTML>. These are the beginning and ending tags to every document on the WWW. The head tag contains the title of your page, and between the <BODY> tag and the </BODY> tag is where you put all the information that will appear on your page. Tags must always be nesting, otherwise it won't work.

 

If you use an offline editor (like Notepad or Microsoft Frontpage) to make your pages, you will have to download a FTP program so that you can upload (send) your files to your server space. FTP means "file transfer protocol". I use WS-FTP_LE. You can download it here. You need to make sure that you are allowed to upload files with FTP to your server, some of the free servers require you to use their editor to upload.