Tutorial Pg.1
How to start a Website


       To start any website you need to open a text editor. I would suggest using TextPad, because it will highlight the tags blue that you will be using in your website. **With every opening tag you must have a closing tag. The closing tag has a foward lash then the tag name.** Once you have opened the text editor save the document as an html file. This will allow you to display this page on Internet Explorer or any other Internet service. Once that is done the first thing you need to type is html in < >. All of your tags will be in < >. Once is finished, you must place the head tag. In the head tag is were you will define the title of the page.

       Next is the body. The body tag <BODY> is were the main portion of the website is located. Located in here is you text that you want displayed on the site. This is also the place were your images, links, tables, and lists will be placed. **Remember with every opening tag there must be a closing tag.** Once you have typed the closing tag for the body, you must place the closing body tag you must type the closing tag for <HTML>.

Here is a table showing you what it looks like.

How to start a Website
<HTML>

<HEAD>
     <TITLE> This is my Title </TITLE>
</HEAD>

<BODY>
      This is the place were text goes. In here is the images, links, tables, and lists.
</BODY>

</HTML>

Back Next