PDA

View Full Version : HTML with CSS


heatherC
04-01-2008, 06:46 PM
If I am not sure I need the CSS when I build my website, should I build it with HTML and CSS anyways? What happens if the CSS is not needed?
Thanks!

WebMonkey08
04-01-2008, 07:26 PM
I build with CSS/XTHML.. do a Google search on your question. CSS is a pretty much the std these day, I think....

davidrosso
04-02-2008, 01:20 AM
If I am not sure I need the CSS when I build my website, should I build it with HTML and CSS anyways? What happens if the CSS is not needed?
Thanks!

Use html w/css or xhtml w/css. I would avoid using dhtml, its a bit buggy.

heatherC
04-02-2008, 01:19 PM
Thanks for your help!

vic newey
04-02-2008, 03:45 PM
Uploading with CSS serves little purpose if you haven't built your site using it, even If all your pages have only the same backgound then its worthwhile to use it.

The idea is that you can select & use the same styles for background/ font /buttons etc on every page so when you add a new page you don't have to try
& sort out what you used on the previous pages as you simply select the style you will have used before. You can also make changes to all the pages in one go with a simple click
This means that when anyone loads one of your pages on the web it will load all the styles as required for the first page they view but does not need to do the same on any of the others as the styles are then cached on the viewers computer so page loading/browsing is much quicker as it doesn't have to keep downloading the same files for every page.

heatherC
04-02-2008, 04:58 PM
Thanks for the information!