The following are examples of Display Ads and the basic HTML Table code you need to create them.
These are only basic examples and a qualified web designer can create much more sophisticated
ones by following our Display Ad Specifications which you can get from your Hitsquad Advertising Representative.
NB This is not intended as a comprehensive guide to design or HTML. The purpose of this information is
to give someone with existing HTML knowledge a basic understanding of how HTML Tables are to be structured for
our Display Advertisement format. For complete specifications on HTML Tables see
http://www.w3.org/TR/html4/struct/tables.html
and for complete specifications on HTML see http://www.w3.org/TR/html4/
Example 1: Single image on the left
|
Image goes here
|
Your advertising copy goes in here.
|
Here is the basic HTML code that will produce the layout above (without the border line):
<table border="0" width="100%">
<tr>
<td align="center">
Image goes here
</td>
<td width="100%" align="center">
Your advertising copy goes in here.
</td>
</tr>
</table>
Example 2: Single image on the right
|
Your advertising copy goes in here.
|
Image goes here
|
Here is the basic HTML code that will produce the layout above (without the border line):
<table border="0" width="100%">
<tr>
<td width="100%" align="center">
Your advertising copy goes in here.
</td>
<td align="center">
Image goes here
</td>
</tr>
</table>
Example 3: Images on both sides
|
Image 1 goes here
|
Your advertising copy goes in here.
|
Image 2 goes here
|
Here is the basic HTML code that will produce the layout above (without the border line):
<table border="0" width="100%">
<tr>
<td align="center">
Image 1 goes here
</td>
<td width="100%" align="center">
Your advertising copy goes in here.
</td>
<td align="center">
Image 2 goes here
</td>
</tr>
</table>
Example 4: Images on both sides and an image above the copy
|
Image 1 goes here
|
Image 2 goes here
|
Image 3 goes here
|
|
Your advertising copy goes in here.
|
Here is the basic HTML code that will produce the layout above (without the border line):
<table border="0" width="100%">
<tr>
<td align="center" rowspan="2">
Image 1 goes here
</td>
<td align="center" width="100%">
Image 2 goes here
</td>
<td align="center" rowspan="2">
Image 3 goes here
</td>
</tr>
<tr>
<td align="center" width="100%">
Your advertising copy goes in here.
</td>
</tr>
</table>
Back to Advertising Media Kit Contents | Back to Advertising Examples