How do you create style sheets? Its my understanding they are like your own website's templates? I would like to see topics of how to setup online
photo galaries.
Stylesheets are the shizzy (or shizzle or whatever)
Stylesheets allow you to format content that is surrounded by a tag that you want to change the appearance of the content.
There are inline stylesheets, embedded stylesheets, and extenal stylesheets.
Inline stylesheets are applied directly to a tag and effect only the content that particular tag surround for example:
YOUR CONTENT
Would make all the text enclosed in the p tags red.
Embedded stylesheets are placed in the head seciton and effect all the tags in the page
Would make all the text in on the page that has the style embedded green.
External stylesheets are .css files that you write in text editors that you place in your site's root folder and attached in the head section of a page or pages in the site with
The .css file can contain styles for any or as many tags, classes ( . ), or ids ( # ) but lets stick to the simple
tag for now. in the external stylesheet you can add the
p {color orange} (you don't need to add