So much more important than your css is your code. 130 odd validation errors and you have used tables for layout which is not good. Also, you have no DOCTYPE so the browsers have to guess what way you want the page to be laid out.
http://validator.w3.org/check?uri=ht...idator%2F1.654
However, moving your css into a separate stylesheet file (which is what you want to be doing) is simple. Just copy the css code from the head of your page into a text file and save it as style.css or something with a .css ending.
like this
Quote:
body {background-color: #ff99cc;}
.fullSize {margin: 25px;}
.thumbNail img {border: 2px solid #fb008e; margin-left: 3px; margin-top: 3px; margin-right: 3px; margin-bottom: 3px;
width: 130px; height: 200px;}
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: none}
|
However, I recommend you fix the layout of the site to use semantic code and then put the css into the separate file. That will ensure as far as possible, that you do not run into this headache again further along the road.
Important ~ priorities:
1. learn enough MySQL to put your stuff into a database. (look up 'database normalisation',
2. learn php so you can retrieve that data as appropriate to a 'query' and output the results to the web page. (or use perl or other server side language)
3. use css to style that output. (best I think, to work with firefox and use the plug ins like 'web developer' and 'firebug')
check for validation errors throughout coding so you catch them earlier and, therefore cause fewer.
hth
Edit:
That example page does not say anything about where you are in the world. I guess you are in the UK but that is only because your dress sizes start at 6-8 and not -40! lol
bazz