Quick introduction

Here are some pages to show some of the codes that have been used to make the Ioffer.com malls and pages by the members and Pigeon Alley Antiques & Collectibles. Use them as you wish to make Ioffer malls, I hope these help a bit. Any other use, please do contact me through pigeonalley@hotmail.com for permission to use the copyrighted stuff on your pages. Thank you!

If you need help, come over to Ioffer ( click on the logo below) and you will find lots of help on the chatboards and clubs from a bunch of friendly and knowledgible folks. On Ioffer.com, you will find everything you would on E-bay or Yahoo, but in a store setting, not an auction. This lets you offer for an item, such as a car, real estate, depression glass, books, music and song lyrics, anime, and everything you can think of, even golf clubs. The clubs have outstanding Thanksgiving and christmas holiday recipes offered as well.You'll get to offer for the best buy you can plus get to shop on a great place as well!

There is a link for our Hotmail down at the bottom of the page, if you need to contact us.

This will take you from a brief explanation of a basic table to a code for an Ioffer mall by boxbug, with some information inbetween as to writing your code and images. Another page or three will follow as requests come in. Any questions or requests, please click on the Ioffer link and ask either on the club chats / boards or contact us at Pigeon Alley Antiques & Collectibles.



Okay, are you ready? Let's start!



If you want a logo like this one:



This is what the code looks like, but take the numeral 9 out from the first spot after each < character. I put that in so the code would show on the page. Here is the code:



<9center><9img src="http://www.ioffer.com/imgs/home/iofferlogo.gif" width="170" height="61" border="0"><9/a>

Note that this has the link to the Ioffer main page in it, so if you click on the Ioffer, you will go there. The html for making a link is the <9a href="yoursiteaddress">your site address ; in this context, the "A" is called an anchor. The default color for a clickable anchor is the bright blue. Again, remove the "9" and add your site address that you want people to go to instead of yoursiteaddress.

A quick and easy place to learn HTML code will be at this link Dave's interactive HTML tutorial - Learn how to code HTML! . I printed out the cheat sheet and it is a simple site to go through, designed for the non-coder to follow and learn easily. I can't say enough good stuff about this site!



A page with the mall starts with a simple idea of a single table that you end up using in different ways.





Basic HTML tags for Tables



The basic commands for your tables will be:
table = to open a table
/table= to end a table
tr= table row
td= table data
all commands end with the / mark to stop them.





The most basic building block you will need

Here is a code for a single cell, single row table with a border that looks like this:

this is a simple table for you


The code for this would look like the following,

<TABLE BORDER="1" CELLSPACING="1" CELLPADDING="2">
<TR>
<TD>this is a simple table for you </TD>
</TR>
</TABLE>


So, now you have one table.


Adding to the basics just a little



To increase the number of td's to look like this:


hi, my name is Sam the seller, shop at Ioffer.com

hi, my name is Suzy, the seller, shop at Ioffer.com



and the code would be:

<TABLE BORDER="1" CELLSPACING="1" CELLPADDING="2">
<TR>
<TD><P ALIGN=Center>hi, my name is Sam, the seller, shop at Ioffer.com </TD>
<TD><P ALIGN=Center>hi, my name is Suzy, the seller, shop at Ioffer.com </TD>
</TR>
</TABLE>


If you want to add more spots across, you increase the TD's; if you want another row under the first one, You use the command TR, then as many TD's as you want spots to go across.





Another step on to more



Now for a table that has more, here is a table that has 4 Td ( information area called a Table Data) in each Tr ( Table Row) :

block one information goes here

block two information goes here

block three information goes here

block four information goes here

block five information goes here

block six information goes here

block seven information goes here

block eight information goes here




your code would look like this and for more , simply add more rows (from a TR)and TDs (remember the end tag part with the / marks):


<TABLE BORDER="1" CELLSPACING="1" CELLPADDING="2">
<TR>
<TD><P ALIGN=Center> block one information goes here </TD>
<TD><P ALIGN=Center>block two information goes here </TD>
<TD><P ALIGN=Center>block three information goes here </TD>
<TD><P ALIGN=Center>block four information goes here </TD>
</TR>
<TR>
<TD><P ALIGN=Center>block five information goes here </TD>
<TD><P ALIGN=Center>block six information goes here </TD>
<TD><P ALIGN=Center>block seven information goes here </TD>
<TD><P ALIGN=Center>block eight information goes here </TD>
</TR>
</TABLE>



Always remember to check your code and size your images



Always add the TR and TD between the Table commands, check your < and > to make sure they are where they should be, and have fun. You can copy and paste any of the above. Put your information, ie - "Sam's Hardware" in where it says " Block # ??".

Watch any quote marks you use, if there is a goober on your page, check your tags (< and >) and your quotes as just one missing will mess it up. I often will put each piece of code on a seperate line as I code so it is easy to look at (for me) for any errors. This makes it not as pretty as making it all indented and such, but since I just started to learn, and it's my code, who cares?

When using images, it is best to keep them in a certain size group to keep your table cells in alignment the easy way. Click on th image and look at the properties so you may see the size of the image. If needed, reduce evenly to fit, ie- if image is 220 wide by 170 tall and you are using 150 by 150 spaces, simply mark in the width and size ( look at the table below for width="nnn" height="nnn") to 150 by 100; you keep the picture in balance by subtracting or adding the same amount to both numbers of the width x height. The actual image may not be 150 x 150, but it will fit neatly in the space alloted for it.

This also helps your images load more quickly and evenly. And the quicker your page loads, the more folks will stay.

One handy item I like to use to make notes to myself or others that are looking at my code, is the use of <9!--what ever note to me I want goes in here-->, which maybe be used, without the "9", as an unseen note on your "public" page but note to yourself about where you started or finished a certain section or script or just a note that informs you about what you need to recall at that point. (When you use that tag, it will only be seen by yourself or anyone looking at the source code, not the casual viewer of your webpage.)

Other than eggs, milk and coffee lists, of course!




Adding an image and centering in each TD



Okay, you now can put the text in, but you want it to be in the middle of your cell area and also add an image? We are in a hurry, hhhm? But that is good, you will have a more interesting table with some images as well as text.

Backing up a bit on the size of the table and rows, let's just use a simple table with one cell with centered text and centered image to start, something like this:

pretty pigeon flying




The code looks like this:

<TABLE BORDER="1" CELLSPACING="1" CELLPADDING="2">
<TR>
<TD><P ALIGN=Center>pretty pigeon flying <BR>
<IMG BORDER="0" WIDTH="how wide you want the image" HEIGHT="how tall you want the image" SRC="yourpigeon"></TD>
</TR>
</TABLE>


See what is different between this cell and the others so far? All you have to do is copy and paste the new stuff in your already made table to add in the image off your host and surprise! You have it.

Fun, hhhmmm?

Use different arrangements a bit, see how it works or doesn't work for you and how it looks on the page to decide how you want your page to look. Try adding more TD's to each row or less, add more rows to the table and see what it looks like.

One Ioffer Mall template



After you play a bit with the tables above, look below and you will find a template that Boxbug made for Ioffer. Look at the way it is structured and how come it works like that. This template has a background of xmas-paper and is 4 TD's across and 5 TR's long.

This is how it looks to the viewer of your page:


Ioffer mall template with x-mas paper background iOffer Promotion



Title of Your Page Here
Subtitle can go here, or delete.


CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927

CamryŽ Traditional Kitchen Scale
hopalong927






here is the coding for it, Thank you, Boxbug!!!




Ioffer mall template with x-mas paper background:


< !doctype html public "-//w3c//dtd html 3.2//en">


<html>


<head> <title>iOffer Promotion<9/title>

<meta name="description" content="iOffer is a trading community based on negotiation. No bids, reserve pricing, auction end times, and last minute sniping. Negotiation allows the buyer to make an offer on one or more items. Sellers can accept, counter, or decline the offer. Buyers get a good price. Sellers get the price they want. iOffer - an easier way to buy and sell.">


<META name="keywords" content="offer, ioffer, electronics, cars, clothing, apparel, collectibles, sporting goods, auction, digital cameras, antiques, tickets, jewelry, online shopping, auction, online auction, ad, ads">


</head>


<body background="http://www.boxbug.com/xmasbgj.jpg" bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080" alink="#ff0000"> <3br>

<center><a href="http://www.ioffer.com"><img src="http://www.ioffer.com/imgs/home/iofferlogo.gif" width="170" height="61" border="0"></a><br><br><font face="arial" size="6" color="black">Title of Your Page Here</font><br><i><font size="3"><b>Subtitle can go here, or delete.</b></font></i></center><br>


<center><table width="100%" border="1" bordercolor="black" bgcolor="black" cellspacing="0" cellpadding="4"> <tr>



<!-- Row 1 Column 1 -->

<td bgcolor="white" width="25%" valign="top"> <b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 1 Column 2 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">

CamryŽ Traditional Kitchen Scale <br>hopalong927</font>

</a>

</b>

</td>


<!-- Row 1 Column 3 -->

<td bgcolor="white" width="25%" valign="top"> <b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 1 Column 4 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>



<!-- Row 2 Column 1 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 2 Column 2 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>


<!-- Row 2 Column 3 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 2 Column 4 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>



<!-- Row 3 Column 1 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 3 Column 2 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>


<!-- Row 3 Column 3 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 3 Column 4 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>



<!-- Row 4 Column 1 -->

<td bgcolor="white" width="25%" valign="top"> <b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 4 Column 2 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">

CamryŽ Traditional Kitchen Scale <br>hopalong927</font>

</a>

</b>

</td>


<!-- Row 4 Column 3 -->

<td bgcolor="white" width="25%" valign="top"> <b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 4 Column 4 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>



<!-- Row 5 Column 1 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 5 Column 2 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>

</b>

</td>


<!-- Row 5 Column 3 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2">CamryŽ Traditional Kitchen Scale <br>hopalong927</font></a>

</b>

</td>


<!-- Row 5 Column 4 -->

<td bgcolor="white" width="25%" valign="top">

<b>

<a href="http://www.ioffer.com/selling/hopalong927">

<img src="http://www.ioffer.com/img/1089529200/_i/3296435/t_1.jpg" width="90" height="80" border="1">

<br>

<font face="arial" size="2"> CamryŽ Traditional Kitchen Scale <br>hopalong927</font> </a>



</b>



</td>

</b>

</td>

</tr>

</table>

</center>


The next page will have another code that may be used in a repeated pattern as many times as you wish. This one has a slightly wider border with a color; the color is green, but change it to what ever color you like.

Pigeon Alley page 3

don't ask where page 2 is for now, it's been bad and is currently standing in the corner!!! Visit our other pages on the web, and our Ioffer.com store for many holiday specials as well. Here are the links:



Pigeon Alley Antiques & Collectibles (Contest site)

Pigeon Alley Antiques & Collectibles Ioffer Mall

copyright pigeonalley, please contact for use permissions. Thank you.