|
eBay Live! Advanced HTML Class Notes
Hello,
Thank you for attending my Advanced HTML class. Here is the code from some of the topics we covered:
Basic Table
<table border=1>
<tr><td>
Just a single cell.
</td>
<td>
Another cell.
</td></tr>
</table>
More information: Hack #40
Photo and Caption
<table border=0>
<tr><td>
<img src="http://www.ebayhacks.com/pictures/corkscrew.gif">
</td></tr>
<tr><td>
Put your caption here
</td></tr>
</table>
More information: Hack #59
What's Included Box
<table border=1>
<tr><td bgcolor="yellow">
What's included
</td></tr>
<tr><td>
<ul>
<li>first item
<li>second item
<li>third item
</ul>
</td></tr>
</table>
More information: Selling with eBay's New Auction Page
Cascading Style Sheets (CSS)
<style>
BODY,TD {
background: orange !important;
color: brown !important;
}
</style>
More information: Hack #43
|