Getting started with the editor.


When you are finally ready to begin your own project, you can open Arachnophilia. The first thing that you will need to click on is the new page button at the top of the screen. This will bring up a box that will allow you to choose your page title, background color, as well as the colors of the text, HTML links, active and visited links. You will not see anymore information about the Arachnolphilia program. The best way to learn a new program is to work with it. This manual will show you how to learn successful HTML techniquesand good programming style.


Examining the code already present.

The tags that are present when you get to this stage of the process are required. Meaning of course, that if you remove them you and others will not be able to view your site on the Internet. You will find the required tags and what they mean in the following table.
REQUIRED TAGS
<HTML></HTML> Deifnes the language that the browser is reading.
<HEAD></HEAD> Specifies what comments show at the top of the browser.
<TITLE></TITLE> Goes between the HEAD tags for the title of your page.
<BODY></BODY> All of your code goes between the body tags. That which is not between the tags will not be displayed by your browser.
<><> All of your tags must have both brackets. Closing tags also have what is referred to as a stop function. For example: <I></I> which is the tag for ITALICS.