Cascading Style Sheets
"Change the appearance of hundreds of Web pages by changing just one file"

Example HTML...
<style type="text/css">
BODY {
 background-color: black;
 color: yellow;
}
H2 {
 color: gray;
 font-size: 100pt;
}
</style>


I can change the look of the whole site...
<H1>And I can</H1>
<h2>modify</h2>
<h1>what each tag does</h1>

Example Results...
I can change the look of the whole site...

And I can

modify

what each tag does

< prev | home | next>
All Materials ©2003-2007 Zach Berke