October 08, 1999


TABLE OF CONTENTS

What Do You Have To Say?

In The Spotlight-"Classified eXchange"

An invaluable resource

Beginning HTML - Frames

This Week's Download

A Word From This Week's Sponsor

VIRTUAL PAGE

Page 1

Page 1

Page 1

Page 2

Page 3

Page 3


Editors of Web Marketing Tips Ezine:
Rick Barr and Nicole Bibee







Page 1

What Do You Have To Say?

We would like to get some testimonials from you online marketing execs. We are interested in hearing about your achievements in marketing in the online world. If you would like to share your story with us, we would love to hear from you.

Drop us a note with your story. True stories only. NO HYPE! Testimonials will be reviewed and may appear in a future issue. ezine@prodigy.net



Classified eXchange

Place your classified ad on over 10,000 member sites for free. This program is similar to the banner exchange programs but they do things slightly different. You will place an advertisement to your site instead of a banner. The thinking behind the program is due to the millions of banners already out there. Also the classifieds blend in with the look and feel of the particular site it is being displayed on.

There is a 2:1 ratio which is more than the standard of 3:1. Meaning, for ever two people that visit your site, your ad will be shown again on another site. There is an online statistics tracker that will give you the number of daily displays and click thru percentages. Visit www.classified-x.com for more information.



An Invaluable Resource
written by Rick Barr

Ever wondered if you have the latest versions of the software that you are using? Or if there are updates/new versions of software, drivers, patches and more? Then check out ZDnet's upgrades page at: http://updates.zdnet.com/. Find out what you should update and where to get it.



On To Page 2







Page 2

Beginning HTML - Frames
written by Nicole Bibee

Frames

Frames are windows that allow the browser to display several HTML files within its display window. Think of frames like a divided plate that has three sections of food but they are presented as one meal. Or you could think of stained glass windows. The pieces are presented as beautiful picture but they are still separate pieces of glass.

A good example of frames would be having a hyperlinks list on the left edge and the information that is specific to each link on the right. And we feel it is important to keep this list on each page so the user may access whatever page in random order. To do this without frames, we would have to cut and paste the code to each HTML file and this would take a great deal of time. But with frames we can create a table of contents file that will always appear on the left without duplicating the code to several pages.

Planning Our Frames

We should consider planning the layout of our frames before creating them. Here are some questions you should keep in mind:

1. What information will be displayed in each frame?
2. Where will your frames be placed?
3. What size will the frames be?
4. Which frames will change when a hyperlink is clicked?
5. Which frames will show the same content?
6. What pages will be the first viewed?
7. Can the user resize the frames or change the layout of the page?

For example, you have a company that sells various computer products. Lets also say that you have different types of products such as: hard-drives, printers and monitors. First off, we need to give the user easy access to each category by creating a link or table of contents. This section will be on the left edge of our page so that they can navigate through each section easily and randomly.

Here are our sample files:
table.html - table of contents
intro.html - introduction page
hdrives.html - hard drive page
printers.html - printer products page
monitors.html - monitors products page

Creating Frame Layout

To create a frame layout you will need to create an HTML file with the frameset tags. This HTML file will contain the code that will bring all the pages together to form our presentation. Here's the code:

<.HTML>
<.HEAD>
<.TITLE>page title<./TITLE>
<./HEAD>
<.!--notice the body tag is missing-->
<.FRAMESET>
frame definitions
<./FRAMESET>
<./HTML>

There is a reason the body tag is excluded from the file, the page with frames displays the content of other pages. These pages will already have their body properties set.

Specifying Frame Size And Orientation

The frameset has two properties: ROWS and COLS. You use the ROWS property when you want your pages laid out in rows and COLS laid out in columns. Here is how:

<.FRAMESET ROWS="row height, row height">
OR
<.FRAMESET COLS="col width, col width">

You can specify the width or height in three ways: pixels, percentages of the total size of the frameset or by using an asterisk (*). Simply put, you can tell the browser to use whatever space is left in the display area. For example your dislpay is 500 pixels high and you use <.FRAMESET ROWS="100, *">. The first row would be 100 pixels high and the second would be 400 pixels high.

Specify Frame Source

Going back to our example computer store, we will need to specify the pages in the frames. The code to use would be:

<.FRAMESET COLS="150, *">
<.FRAME SRC="table.html">
<.FRAME SRC="intro.html">
<./FRAMESET>

Controlling Appearance

There are three properties used to control the appearance of the frames. They include: scrollbars; margins between the source content & the frame border AND whether or not the user may change the width/height of the frame.

Normally scroll bars appear only when the contents of the source cannot fit in the frame. A value of YES will display scrollbars and NO will not display them. But you can override this by using:
<.FRAME SRC=document SCROLLING=YES>

Next, to change the margin height or width in pixels use:
<.FRAME SRC=document MARGINHEIGHT=5 MARGINWIDTH=10>

Also you can keep the user from resizing the frame. To NOT allow them to resize use:
<.FRAME SRC=document NORESIZE>
*Otherwise do not add the code for the user to resize the frame.

However if you have more frames, you can specify which link in your table of contents, opens in a specific frame. First name the frame in the frame src tag and then edit the <.a href="filename"> tag to include: target=framename. If you would like more detail on how this process is done and how to nest frames inside another; please email me at Nicole Bibee

The Disadvantage

There is a disadvantage to working with frames. Some older browsers do not support them so it is necessary to add code that can be viewed by these older browsers. Here is where we will use the body tag we talked about earlier. Add <.NOFRAMES> after your ending frameset tag <./FRAMESET>. Next you can then add the body tag and your other tags to be viewed. Make sure you end with the <./NOFRAMES> tag.

Here is an example of the computer store page with code for non-frame browsers:
<.HTML>
<.HEAD><.TITLE>PC's R US<./TITLE>
<./HEAD>
<.FRAMESET COLS="140, *" NORESIZE>
<.FRAME SRC="table.html">
<.FRAME SRC="intro.html">
<./FRAMESET>
<.NOFRAMES>
<.BODY BGCOLOR="#000000">
<.TABLE WIDTH=600>
<.TR>
<.!--First column-->
<.TD bgcolor="#FFFFFF">Table of Contents
<.br><.a href="home.html">Home<./a><.br>
<.a href="hdrives.html">Hard Drives<./a><.br>
<.a href="printers.html">Printers<./a><.br>
<.a href="monitors.html">Monitors<./a><./td>
<.!--Second column-->
<.TD>Welcome to PC's R US<.br><.br><.br>
We ship all over the world and our products are lifetime guaranteed. Please click on a link to left to view our products and prices.<.br><./td>
<./TR>
<./TABLE>
<./BODY>
<./NOFRAMES>
<./HTML>

Well folks, that finishes up our discussion on frames. Next week we will start covering web page forms.

Notice: We had to insert a period after the less than sign to make the tags viewable by your browser. When writting your own code please do not add the period to the tags.

On To Page 3






Page 3

This Week's Download
written by Rick Barr

Infodisk. The name pretty much says it all except that it is not a disk. It's a download that comtains more reports than you can shake a stick at. Get your copy today at: Biz1st


A Word From Our Sponsor

Do you have a number of people that you work with in collaboration on a project or business? Then you need an intranet where all ideas and documents can be kept in one place for everybody to see and use. You can get one today for free at http://www.intranets.com .





If you would like to see an article on a particular subject or subscribe, send us an email with your name and idea to ezine@prodigy.net.

Home