What are Stylesheets?
Question: I have read your article on specifying fonts, but I do not know what a style sheet is or how to make one.
DollyX
Answer: A stylesheet is what you use to define how your web page should appear (which fonts, how big, colours etc). You can attach a stylesheet into the head section of a page by enclosing the stylesheet commands in <style> </style> tags or alternatively create a separate file with a .css suffix (eg. master.css) and link that into all of your web pages using <link rel="stylesheet" href="master.css" type="text/css" />.
The separate file solution means that you can then link the same stylesheet into all of the pages on your site and then at a later date change the appearance of all of the pages simply by changing the stylesheet file.


