You can easily create a dedicated page detailing your banner advertising rates and site information for potential advertisers using <table>
tags to build a table.
Ad Zone | Banner Size | Est. Impressions | 30 Day Price |
---|---|---|---|
Contact Us to Learn More | |||
Leaderboard | 468×60 | 500,000 | $750 |
Home Sidebar Premium | 300×250 | 300,000 | $500 |
Home Sidebar Bottom | 120×240 | 250,000 | $300 |
Home Sidebar Bottom | 125×125 | 200,000 | $200 |
This is merely an example. You can optionally link any of your unsold advertising banners back to this page as we have done with the demo.
The HTML Code For Demo Table
The above displayed table is generated using the following valid HTML <table>
tags.
<!-- copy and past this code in the HTML Editor -->
<table>
<caption>Advertise with Periodic</caption>
<thead>
<tr>
<th>Ad Zone>/th<
<th>Banner Size</th>
<th>Est. Impressions</th>
<th>30 Day Price</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4"><a href="http://demo.wearepixel8.com/periodic/contact/" title="Contact" >Contact Us</a> to Learn More</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Leaderboard</td>
<td>468x60</td>
<td>500,000</td>
<td>$750</td>
</tr>
<tr>
<td>Home Sidebar Premium</td>
<td>300x250</td>
<td>300,000</td>
<td>$500</td>
</tr>
<tr>
<td>Home Sidebar Bottom</td>
<td>120x240</td>
<td> 250,000</td>
<td>$300</td>
</tr>
<tr>
<td>Home Sidebar Bottom</td>
<td>125x125</td>
<td>200,000</td>
<td>$200</td>
</tr>
</tbody>
</table>