Presented by fjd1.com
    Steps
  1. Preliminary
  2. Design your site
  3. Uploading files.
  4. Testing your site.
  5. More...

Multi Level Mailing List Builder

FreeMailer2000 When you sign-up for Free, you will get your very own personalized FreeMailer2000 website along with your Unique URL. When someone signs-up from your FreeMailer2000 website, they become your First Level Downline. Similarly, when someone else signs-up from their Unique URL, they become your Second Level Downline and so on till 15 Levels. The trade off here is very light, only 14 people are able to send email to you in return.


Webrings

Click here for information about webrings mastered by fjd1.com

Webings are a great way to surf the web by topic, and a good method of getting your pages noticed for webmasters.



Software

Trillium University maintains an archive at Ware.netfirms.com for software (and links to downloads) which you might find benificial.




Join the BusinessForYou.Com
affiliate program!

The Internet Society
We are a member of ISOC, the Internet SOCiety.

GC Computers - Computer Trade-Show Prices Everyday

Photos To Go
Type words describing
the photo you want




If you need professional help, send me an e-mail describing your needs and how to best contact you.

Sincerely,
F. Davies
fjdavies@yahoo.com
(360) 352-0242
ICQ 43536012


advertisements

Step by step instruction for creating a website.

2. Designing your site continued. Click here for the previous lesson.

From our last lesson we had a web page entitled index.html with the following code: Here is our previous example as we left it:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<title> My first html page, Hello World </title>

</head>

<body>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

<br />

<a href ="another.html"> <img src="images/myphoto.jpg" width="150" height="150"
alt="My bird feeder."
border="0" />
</a>

<br />

<a href ="another.html">&quot;Me&quot;&nbsp;&lt;Too&gt;</a>

</body>

</html>

Which parsed to look like this:

& Hello W o r l d

My bird feeder.
"Me" <Too>

Suppose we would like picture to be centered from left to right on the page. To center an object, text, or image, or a group of such things, we will a pair of center tags. That which they enclose will be centered. It is very important to use these properly as an error in them can cause a page to be parsed as a blank white page with some browsers. You must have not just a starting tag but a closing tag even if at the very end of your documents body. Here is our link and picture again, enclosed by center tags now:

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

<br />

<center>

<a href ="another.html"> <img src="images/myphoto.jpg" width="150" height="150"
alt="My bird feeder."
border="0" />
</a>

</center>

<br />

<a href ="another.html">&quot;Me&quot;&nbsp;&lt;Too&gt;</a>

Now, just your image is centered as shown below:
  & Hello  W o r l d

My bird feeder.

"Me" <Too>

As we continue here, we will generally show only the portion of the code which is of interest. Let's turn our attention now to our first line of text, the Hello World we typed in earlier. There are six heading tag pairs which we can use to emphasize our headings and subheadings and the like. Six different sizes of text are associated with them, and a line break is automatic after the closing tags so you do not need to include a break tag to get to the next line. They are ordered in size from 1 being the largest to 6 being the smallest and it is worth noting that the search engines do pay attention to them as apart from regular text. (Wise and proper use of headdings may improve your rankings on the search pages.) Here are all six heading tag pair, each enclosing our Hello World text:

<h1>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

</h1>

<h2>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

</h2>

<h3>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

</h3>

<h4>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

</h4>

<h5>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

</h5>

<h6>

&amp;&nbsp;Hello&nbsp;
W&nbsp;o&nbsp;r&nbsp;l&nbsp;d

</h6>

This should parse similar to what is shown below where these are in order from size one through size siz the smallest.

& Hello W o r l d
& Hello W o r l d
& Hello W o r l d
& Hello W o r l d
& Hello W o r l d
& Hello W o r l d

Sometimes you may wish to have some portion of text show up exactly as it is typed, complete with extra spaces and breaking to new lines exactly as it was typed in. Without this pre tag pair, text is handled in a very automatic way, changing dynamicly as the user resizes a page, (to make everything fit in the window as best as possible.) Here is how you would use them if you were enclosing this paragraph. Note also that the text generaly looks like it was typed on an old typewriter, depending on your browser settings.

<pre>
Sometimes you may wish to have some portion of text show up
exactly as it is typed, complete with extra spaces and breaking to
new lines exactly as it was typed in. Without this pre tag pair, 
text is handled in a very automatic way, changing dynamicly as the 
user resizes a page, (to make everything fit in the window as best as 
possible.) Here is how you would use them if you were enclosing this 
paragraph. Note also that the text generaly looks like it was typed on
an old typewriter, depending on your browser settings.
</pre>
Note that it parses below just like it written above:
 Sometimes you may wish to have some portion of text show up
exactly as it is typed, complete with extra spaces and breaking to
new lines exactly as it was typed in. Without this pre tag pair, 
text is handled in a very automatic way, changing dynamicly as the 
user resizes a page, (to make everything fit in the window as best as 
possible.) Here is how you would use them if you were enclosing this 
paragraph. Note also that the text generaly looks like it was typed on
an old typewriter, depending on your browser settings. 
By removing the pre tags you can see how your browser adjusts the lengths of lines and as you try draging the edge of your window you will note that the text area adjusts to present all the text as best it can. Here is the exactly the same text block, except this time, parsed without the pre tags.

Sometimes you may wish to have some portion of text show up exactly as it is typed, complete with extra spaces and breaking to new lines exactly as it was typed in. Without this pre tag pair, text is handled in a very automatic way, changing dynamicly as the user resizes a page, (to make everything fit in the window as best as possible.) Here is how you would use them if you were enclosing this paragraph. Note also that the text generaly looks like it was typed on an old typewriter, depending on your browser settings.

There are also tags to make the text bold or italicized or small or big as illustrated in the following code:

This line is just plain ol' text.

<b>Enclosed within the bold tag.</b>

<i>Enclosed within the italic tag.</i>

<small>Enclosed within the small tag.</small>

<big>Enclosed within the big tag.</big>

<big><b><i>
Enclosed within big, bold and italic tags.
</big></b></i>

Below is the parsed text:

This line is just plain ol' text.

Enclosed within the bold tag.
Enclosed within the italic tag.
Enclosed within the small tag.
Enclosed within the big tag.
Enclosed within big, bold and italic tags.

Our style sheet here may be over riding things a bit, so if the results seem less than obvious, try it yourself on your own pages. In fact, that is exactly what you should be doing, testing out every thing for yourself to see if it works as planned before you commit to creating a massively complex document. Try adding each of these tags to your practice pages. Later, you can use them for reference as you create more pages. I often refer to pages I have written knowing that some effect or gadget exists there and is working fine.

Two more which are quite handy are the subscript tag pair and the superscript tag pair. They are used to move characters up just a little bit or down just a little bit, and when combined with the small tag pair work great for expressing equations, molecules, and things such as number look just a bit more trick. Here is the code for three examples, each using one of these tags, and all having the small tag nested inside:

E=mc<sup><small>2</small></sup>

H<sub><small>2</small></sub>O

1<sup><small>st</small></sup>

After being parsed we can see the result below: (Yes, you may have notice that I have added a break tag now and then to make the examples a bit easier to read while I excluded it from the code also to make it less cluttered. If your examples all wind up on a single line, adding a few breaks will put things on their own lines.)

E=mc2

H2O

1st

Here are another three for the teletype effect, the underlining of text and strike through of text.

<tt>This is parsed using the teletype tag.</tt>

<u>This text is underlined.</u>

<s>This tag causes text to have a line stuck through it.</s>

Your browser handels them like this:

This is parsed using the teletype tag.

This text is underlined.

This tag causes text to have a line stuck through it.

Designs and diagrams may also be represented using the pre tag to align things the old fashioned way and mimic the character artwork dating back tothe invention of the typewriter. Here is the code for equation for caffine, commonly found substance in webmasters:
<pre>
           CH3
           |
     O=C---N
      /     \
 H3C-N       C=O
      \     /
       C===C
       |    \
       |     N-CH3
       |    /
       N===C
           |
           H
</pre>
And here is how it might parse for you:
           CH3
           |
     O=C---N
      /     \
 H3C-N       C=O
      \     /
       C===C
       |    \
       |     N-CH3
       |    /
       N===C
           |
           H
And here is how it might look without the pre tags:
CH3 | O=C---N / \ H3C-N C=O \ / C===C | \ | N-CH3 | / N===C | H

Even adding breaks after each line falls short of correct as all the multiple spaces are reduced down to single spaces. This code still will result in a collapsed diagram:
<pre>
           CH3<br />
           |<br />
     O=C---N<br />
      /     \<br />
 H3C-N       C=O<br />
      \     /<br />
       C===C<br />
       |    \<br />
       |     N-CH3<br />
       |    /<br />
       N===C<br />
           |<br />
           H<br />
</pre>
Note how everything has moved to the left still in this parse:
CH3
|
O=C---N
/ \
H3C-N C=O
\ /
C===C
| \
| N-CH3
| /
N===C
|
H

Again, it is important to try these out yourself. Remember to neatly nest tags inside each other, and this means that the closing tags are in the opposite order as the opening tags were. You may also notice how forgiving this language is in that many of the browsers will ignore (by design) anything they do not understand. They say that content is King, and you now have enough information and knowledge to prepare a basic web page with images and text, so begin now to work on your content, applying all the rules for english grammer and spelling you learned as a child to the job at hand. if in a hurry, you could skip ahead and upload your pages now, or go onto the next lesson where we will introduce some means of adding color to your pages.

Click here to proceed to Web Page Design Lesson Number Four.

  1. Preliminary
  2. Design your site
  3. Uploading files.
  4. Testing your site.
  5. More...

Click to visit our Neoworx products page
Click here for Neoworx products include route tracing (to see the internet route used to another online computer.)


Fantastic Tools for Webmasters!

Boost your Internet speed - Download Now

CLICK HERE to find over 2000 computer items!

Click here to download freeware

GoClick - web pages with one mouse click


Impulse Software - Easy, Effective, E-commerce

ecBuilder Pro - software that sells!





Hosting services include free tools and website hosting. Click on the banners above and make a website within the hour. Premium services are exceptional and they have all the goodies and services you expect from a host.

peopleprofit.com

ebusiness made easy

Download free software and computer tools.
AutoSurf

For further information, contact: fjdavies@yahoo.com