|
|
My T.R.A.I.N. Email | My T.R.A.I.N. Account | Pay My Train Membership | Help & Support |
|
T.R.A.I.N. | T.R.A.I.N. Classifieds | |
|
Texas County Rural Area Information Network |
|||
| Windows Updates | AntiVirus | AntiSpyware | Firewalls | AntiSpam |
| The Basics
First, in order to get started there are a few simple rules to remember.
At the beginning of your page you must put <HTML>. This lets the browser know that it is an HTML document. Also, go ahead and put the </HTML> in on the line below it. This is the end of the document. Just put everything else from the tutorial in between those points. The next command you need is the <HEAD> command. The <HEAD> command contains information about the document. This information is mainly for the browser viewing the page as well as search engines and more. Within the <HEAD> command go ahead and put <TITLE>. This is to let the browser know the title of your page. Go ahead and name this "MY First Page". Then close off your commands. Now your HTML should look like this:
<HTML>
<HEAD><TITLE>My First Page</TITLE></HEAD>
</HTML>
While there are other things other then
just <TITLE> that can go in-between the
<HEAD> command, that is all we are going to
touch on in this tutorial. <TITLE> is also the
only one that must appear between the <HEAD>s.
Now insert the <BODY> and </BODY> commands. Between these commands is where the bulk of your code will go. The finished product should look like this:
<HTML>
<HEAD><TITLE>My First Page</TITLE></HEAD>
<BODY>
</BODY>
</HTML>
Back Next |