hi everyone the css is realtive simple to udnerstand how it works and learn it . the thing i dont know if i want develope a web site page with this css how to edit the html page without tables ? with tables ? but no color just white background and also what about the style letlers,fonts etc. what i should edit in the html file page ? regards truly paul
You just link to the CSS file from the head of your document like this is your webpage: <html> <head> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div id="container"> Some Text </div> </body> </html> Code (markup): Then you'd have a seperate file called style.css where all of your styles would go for example style.css could look like: #container{ color:red; background: blue; } Code (markup): This would then make the container DIV in your page have a blue background, and all the text inside it would be of the colour red.
well thaks for the quck reply but what about the tables ? as i would need a web pagelike that top table divided in two tables one for the logo one for the banner rotator then it will be anothner table divided in three coluns one is for adveritising left side then the central is for the body of the page right side other things bottom a table two rows for the banner exchange or webring how to ad where to create he tables in the web poage editor ? i dotn give any color then? thanks paul