Dastar...
Your Source For Information
46443 Articles Listed





Search:



Introduction To Cascading Style Sheets

CSS (Cascading Style Sheets) have been around for a while now,
and act as a complement to plain old HTML files. Style sheets
allow a developer to separate HTML code from formatting rules
and styles. It seems like many HTML beginners’ under-estimate
the power and flexibility of the style sheet. In this article,
I’m going to describe what cascading style sheets are, their
benefits, and two ways to implement them.

---------------------------------------
Cascading whats?
---------------------------------------

Cascading Style Sheets…that’s what! They’re what paint is to
canvas, what topping is to ice cream… they complement HTML
and allow us to define the style (look and feel) for our entire
site in just one file!

Cascading style sheets were introduced to the web development
world way back in 1996. They get their name from the fact that
each different style declaration can be “cascaded” under the
one above it, forming a parent-child relationship between the
styles.

They were quickly standardized, and both Internet Explorer and
Netscape built their latest browser releases to match the CSS
standard (or, to match it as closely as they could).

So, you’re still asking what a style sheet exactly is? A style
sheet is a free-flowing document that can either be referenced
by, or included into a HTML document. Style sheets use blocks
of formatted code to define styles for existing HTML elements,
or new styles, called classes.

Style sheets can be used to change the height of some text, to
change the background color of a page, to set the default border
color of a table…the list goes on and on. Put simply though,
style sheets are used to set the formatting, color scheme and
style of an HTML page.

Style sheets should be used instead of the standard , ,
and tags because:

- One style sheet can be referenced from many pages, meaning
that each file is kept to a minimum size and only requires
only extra line to load the external style sheet file

- If you ever need to change any part of your sites look/feel,
it can be done quickly and only needs to be done in one
place: the style sheet.

- With cascading style sheets, there are many, many page
attributes that simply cannot be set without them:
individual tags can have different background colors,
borders, indents, shadows, etc.

Style sheets can either be inline (included as part of a HTML
document), or, referenced externally (Contained in a separate
file and referenced from the HTML document). Inline style sheets
are contained wholly within a HTML document and will only
change the look and layout of that HTML file.

Open your favorite text editor and enter the following code.
Save the file as stylesheet.html and open it in your browser:



Cascading Style Sheet Example < itle> <br /> <style> <br /> h1 <br /> { <br /> color: #636594; <br /> font-family: Verdana; <br /> size: 18pt; <br /> }<br /> </style> <br /> </head> <br /> <body> <br /> <h1>This is one big H1 tag!</h1> <br /> </body> <br /> </html> <br /> <br /> When you fire up your browser, you should see the text "This is<br /> one big H1 tag!" in a large, blue Verdana font face.<br /> <br /> Let’s step through the style code step by step. Firstly, we have<br /> a pretty standard HTML header. The page starts with the <html><br /> tag followed by the <head> tag. Next, we use a standard <title><br /> tag to set the title of the page we are working with. <br /> <br /> Notice, though, that before the <head> tag is closed, we have<br /> our <style> tag, its contents, and then the closing </style> tag.<br /> <br /> <style> <br /> h1 <br /> { <br /> color: #636594; <br /> font-family: Verdana; <br /> size: 18pt; <br /> } <br /> </style> <br /> <br /> When you add the style sheet code inline (as part of the HTML<br /> document), it must be bound by <style> and </style> tags<br /> respectively. Our example is working with the <h1> tag. We are<br /> changing three attributes of the <h1>’s style: the text color<br /> (color), the font that any <h1> tags on the page will be<br /> displayed in (font-family), and lastly, the size of the font<br /> (size). <br /> <br /> The code between the { and } are known as the attributes. Our<br /> sample code has three. Try changing the hexadecimal value of<br /> the color attribute to #A00808 and then save and refresh the<br /> page. You should see the same text, just coloured red instead<br /> of blue.<br /> <br /> ---------------------------------------<br /> An example of an external style sheet<br /> ---------------------------------------<br /> <br /> External style sheets are similar to internal style sheets,<br /> however, they are stripped of the <style> and </style> tags,<br /> and need to be referenced from another HTML file to be used. <br /> <br /> Create a new file called “mystyle.css” and enter the following<br /> code into it:<br /> <br /> h1 <br /> { <br /> color: #a00808; <br /> font-family: Verdana; <br /> size: 18pt <br /> } <br /> <br /> Next, create a HTML file and name it external.html. Enter the<br /> following code into external.html:<br /> <br /> <html> <br /> <head> <br /> <title> External Style Sheet Reference Example < itle> <br /> <link rel="stylesheet" type="text/css" href="mystyle.css"> <br /> </head> <br /> <body> <br /> <h1>This is one big H1 tag!</h1> <br /> </body> <br /> </html> <br /> <br /> As mentioned above, you can see that the actual code in<br /> mystyle.css is exactly the same as it was in the inline example.<br /> In our HTML file, we simply place a <link> tag in the <head><br /> section of our page. The rel=”stylesheet” attribute tells the<br /> browser that the link to the external file is a style sheet.<br /> The type=”text/css” attribute tells the browser that mystyle.css<br /> is a text file containing css (cascading style sheet)<br /> declarations. Lastly, the href=”mystyle.css” attribute tells<br /> the browser that the actual file we want to load is mystyle.css. <br /> <br /> ---------------------------------------<br /> Conclusion<br /> ---------------------------------------<br /> <br /> Well, there you have it, a quick look at style sheets and how<br /> to implement both an inline and external version. Checkout the<br /> links below if you’ve never worked with cascading style sheets<br /> before. You will be surprised at some of the things you can do<br /> with them! <br /> <br /> - <a target="_blank" href="http://www.devarticles.com/art/1/7">http://www.devarticles.com/art/1/7</a><br /> - <a target="_blank" href="http://hotwired.lycos.com/webmonkey/98/15/index0a.html">http://hotwired.lycos.com/webmonkey/98/15/index0a.html</a><br /> - <a target="_blank" href="http://www.webreview.com/style/index.shtml">http://www.webreview.com/style/index.shtml</a><br /> - <a target="_blank" href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</a><br /> <br /> <p><h1>About the Author</h1><p>Mitchell is the founder and senior editor of<br /> <a target="_blank" href="http://www.devarticles.com.">http://www.devarticles.com.</a> DevArticles provides its readers<br /> with top quality ASP, PHP and .NET articles, interviews and<br /> product reviews. If you're looking for insider tips and tricks,<br /> you'll also find them at DevArticles. You can visit DevArticles<br /> by clicking on this link: <a target="_blank" href="http://www.devarticles.com.">http://www.devarticles.com.</a><br /> <br /> <table border="1px" cellpadding="1" cellspacing="1" style="solid" bordercolor="#000000" width="546"><tr><td><table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#FFFFFF" width="544"> <tr> <td width="38" align="center" valign="center"> </td> <td width="356" align="left" valign="bottom"><font size="-1" color="#000000"><b>Item</b></font></td> <td width="30" align="center" valign="bottom"><font size="-1" color="#000000"><b>Bids</b></font></td> <td width="50" align="center" valign="bottom"><font size="-1" color="#000000"><b>Price</b></font></td> <td width="70" align="center" valign="bottom"><font size="-1" color="#000000"><b>Ends</b></font></td> </tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs1.ebaystatic.com/pict/1503154477028080_2.jpg" alt="New Perspectives on Microsoft Office Word 2003, Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150315447702&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">New Perspectives on Microsoft Office Word 2003, Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.00</center></td> <td><font size="-1"><center>1d 13h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/1603043573038080_2.jpg" alt="Christian Theology: An Introdu, Alister E. McGrath, Acc" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=160304357303&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Christian Theology: An Introdu, Alister E. McGrath, Acc</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$4.10</center></td> <td><font size="-1"><center>2d 9h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs1.ebaystatic.com/pict/3501393059348080_2.jpg" alt="Student Study Guide to accompany Psychology: An Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=350139305934&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Student Study Guide to accompany Psychology: An Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.33</center></td> <td><font size="-1"><center>2d 13h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs2.ebaystatic.com/pict/3002803521288080_1.jpg" alt="New Perspectives on Microsoft Publisher 2000 -- Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=300280352128&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">New Perspectives on Microsoft Publisher 2000 -- Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.52</center></td> <td><font size="-1"><center>2d 15h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs1.ebaystatic.com/pict/3501393924248080_1.jpg" alt="NEW Wills' Mineral Processing Technology: An Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=350139392424&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW Wills' Mineral Processing Technology: An Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$59.36</center></td> <td><font size="-1"><center>2d 16h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs1.ebaystatic.com/pict/1503157268168080_1.jpg" alt="Becoming a Teacher in a Field-Based Setting: An Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150315726816&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Becoming a Teacher in a Field-Based Setting: An Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$5.97</center></td> <td><font size="-1"><center>2d 21h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://www.dastar.org/ebay/eBay/images/camera.gif" alt="Lan Tutorial With Glossary of Terms: A Complete Introdu"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=360116490705&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Lan Tutorial With Glossary of Terms: A Complete Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.00</center></td> <td><font size="-1"><center>5d 10h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs2.ebaystatic.com/pict/3701310904488080_2.jpg" alt="New Perspectives on Microsoft Office Word 2003, Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=370131090448&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">New Perspectives on Microsoft Office Word 2003, Introdu</a><td><font size="-1"><center>1</center></td><td><font size="-1"><center>$5.57</center></td> <td><font size="-1"><center>6d 9h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/3701317912858080_2.jpg" alt="Flies in the Water, Fish in the Air: A Personal Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=370131791285&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Flies in the Water, Fish in the Air: A Personal Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$6.20</center></td> <td><font size="-1"><center>7d 13h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://www.dastar.org/ebay/eBay/images/camera.gif" alt="New Perspectives on Microsoft Windows 2000 - Introdu..."></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150316642065&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">New Perspectives on Microsoft Windows 2000 - Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.00</center></td> <td><font size="-1"><center>8d 1h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://www.dastar.org/ebay/eBay/images/camera.gif" alt="GLAZUNOV SYMPHONY NO 6/LA MER INTRODU 2008 NR NEW CD"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=370132877102&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">GLAZUNOV SYMPHONY NO 6/LA MER INTRODU 2008 NR NEW CD</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$12.41</center></td> <td><font size="-1"><center>9d 16h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/3701329441708080_2.jpg" alt="Politics: A Very Short Introduction (Very Short Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=370132944170&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Politics: A Very Short Introduction (Very Short Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$7.42</center></td> <td><font size="-1"><center>9d 19h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://www.dastar.org/ebay/eBay/images/camera.gif" alt="A SWINGER OF BIRCHES:A PORTRAIT OF ROBERT FROST.Introdu"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=110328324978&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">A SWINGER OF BIRCHES:A PORTRAIT OF ROBERT FROST.Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$10.74</center></td> <td><font size="-1"><center>10d 8h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/3601179690928080_1.jpg" alt="NEW BOOK The Best Test Preparation for the Clep Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=360117969092&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW BOOK The Best Test Preparation for the Clep Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$25.20</center></td> <td><font size="-1"><center>11d 1h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/3203266503598080_1.jpg" alt="Rousseau: A Very Short Introduction (Very Short Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=320326650359&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Rousseau: A Very Short Introduction (Very Short Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$6.95</center></td> <td><font size="-1"><center>11d 10h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs2.ebaystatic.com/pict/2503463166048080_2.jpg" alt="Student Study Guide to accompany Psychology: An Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=250346316604&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Student Study Guide to accompany Psychology: An Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.33</center></td> <td><font size="-1"><center>12d 13h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs1.ebaystatic.com/pict/4000193643758080_1.jpg" alt="NEW Matter and Consciousness: A Contemporary Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=400019364375&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW Matter and Consciousness: A Contemporary Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$24.00</center></td> <td><font size="-1"><center>13d 10h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs1.ebaystatic.com/pict/2203342486268080_2.jpg" alt="Student Study Guide for use with Psychology: An Introdu" height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=220334248626&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Student Study Guide for use with Psychology: An Introdu</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$1.00</center></td> <td><font size="-1"><center>14d 15h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs2.ebaystatic.com/pict/1502988012948080_4.jpg" alt="NEW Aspects of Combinatorics: A Wide-Ranging Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150298801294&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW Aspects of Combinatorics: A Wide-Ranging Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$50.00</center></td> <td><font size="-1"><center>15d 15h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/1502988129268080_4.jpg" alt="NEW The Modern Search for the Real Jesus: An Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150298812926&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW The Modern Search for the Real Jesus: An Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$9.32</center></td> <td><font size="-1"><center>15d 16h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/1802935460938080_4.jpg" alt="NEW Computing in the Web Age: An Interactive Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=180293546093&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW Computing in the Web Age: An Interactive Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$59.95</center></td> <td><font size="-1"><center>15d 16h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs2.ebaystatic.com/pict/1802935537608080_4.jpg" alt="NEW Dynamic Mechanical Analysis; A Practical Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=180293553760&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW Dynamic Mechanical Analysis; A Practical Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$119.95</center></td> <td><font size="-1"><center>15d 16h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/1702663937308080_4.jpg" alt="NEW The Committed Life: An Adaptation of the Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=170266393730&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW The Committed Life: An Adaptation of the Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$14.95</center></td> <td><font size="-1"><center>15d 17h</center></td></tr><tr bgcolor="#FFFFCC"><td><center><img border="0" src="http://thumbs2.ebaystatic.com/pict/1502988788838080_4.jpg" alt="NEW Law of Real Property: A Short Historical Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150298878883&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW Law of Real Property: A Short Historical Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$33.38</center></td> <td><font size="-1"><center>15d 18h</center></td></tr><tr bgcolor="#CCCCCC"><td><center><img border="0" src="http://thumbs3.ebaystatic.com/pict/1502988809878080_4.jpg" alt="NEW The Land System of the United States: An Introdu..." height="48" width="36"></center></td><td><font size="-1"><a href="http://www.dastar.org/ebay/eBay/kick.php?url=getitem&item=150298880987&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">NEW The Land System of the United States: An Introdu...</a><td><font size="-1"><center>0</center></td><td><font size="-1"><center>$34.95</center></td> <td><font size="-1"><center>15d 18h</center></td></tr><tr><td colspan="2" bgcolor="#999999" align="left"><font size="-1"><b>  <a href="http://www.dastar.org/ebay/eBay/kick.php?url=viewall&action1=satitle%3DIntrodu&SID=s.Introdu&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">View all items on eBay</a></b></td><td colspan="3" bgcolor="#999999" align="right"><font size="-1"><b><a href="http://www.dastar.org/ebay/eBay/kick.php?url=disclaimer&siteID=0" target="_blank" onmouseover="window.status='http://www.ebay.com';return true;" onmouseout="window.status=' ';return true;">Disclaimer</a></b>  </td></tr><tr bgcolor="#ffffff"><td colspan="2"><center><font size="-4">These results were generated from eBay on 01-8-2009 7:34 pm.</center></td><td colspan="3" align="right" valign="bottom"><a href="http://www.ebay.com/api/index.html" title="eBay API" target="_blank" onmouseover="window.status='http://www.ebay.com/api/index.html';return true;" onmouseout="window.status=' ';return true;"><img border="0" src="http://www.dastar.org/ebay/eBay/images/ebay-small.gif" alt="eBay Marketplace"></a></td></tr></table></td></tr></table><!-- Generated: Thursday 08th of January 2009 09:34:18 AM --><i>Introduction To Cascading Style Sheets</i> </div> </div> </body> </html>