Hi Sara, CSS (or "Cascading Style Sheets" for short) is a presentational markup language used to present a visual style (or appearance) to a Web site. It works with HTML (a structural markup language) to give a Web site its look and feel. The easiest way to create a stylesheet is to create a new stylesheet file (the same way you would create an HTML file), but don't put any HTML code in there whatsoever. Instead of saving it as page.html (or whatever.html) save it with a .css extension instead. It can even be an empty file to start. From there, go into the HEAD section of your HTML file and add this line of code: <link rel="stylesheet" type="text/html" href="stylesheet.css" media="screen"> Code (markup): The "link" tag is used to link the stylesheet to the Web page. The type attribute tells the browser how it's being served (as plain text, but treated like HTML), the href="" attribute is just the link to the stylesheet (in this case, stylesheet.css but it can be mystyles.css or yourstyles.css or mydoglarrysstyles.css, whatever you want to call it, as long as the .css extension is used; also it says the stylesheet is in the same folder as the Web page itself) and the media attribute says that only regular Web browsers (on your PC or Mac) should get the file (everything else - PDAs, cell phones, and the like can go without). SitePoint has a wonderful collection of CSS resources you can use to help you learn. The best ones are in the forums there, in the CSS board: http://www.sitepoint.com/forums/showthread.php?t=171943 http://www.sitepoint.com/forums/showthread.php?t=121128 Hope that helps. If you have any other questions, don't hesitate to ask (either here or at SitePoint).
As with anything to do with the internet, I would have to reccoment W3 Schools as one of the best sites W3schools It has tonnes of information on CSS, and also on all the other programming languages. Diarmuid
Gary, Thanks for catching the typo. Unfortunately I can't edit my post anymore, and I can't believe I let that slip through. Please consider this the "correction" post.