can any1 please explain the difference of these two please,
and how do you use CSS in a HTML document?
simple question which i need 2 understand for my project. thanx

can any1 please explain the difference of these two please,
and how do you use CSS in a HTML document?
simple question which i need 2 understand for my project. thanx
love this video
http://www.youtube.com/watch?v=RklC3m73RP0
"leeeeeroy jeeeeeennnnnkinssssssssssssss"
ppl traded
crimson ---- jordam
Rauhl ----- ark alost
cwmbran ------ harl2015
threatened - chimptears
Ok html, hyper text markup language is the "default" of making webpages
... i think and css is lke for styles, scroll bars and maybe is just a lil dif from html, not to sure thoughi dont use it
Anyone that uses Dreamweaver will be using CSS, as a lot of it is run from it. The way you use CSS is with the <style> tag within the <head> tag, just read the tutorial in Website Tutorials for more information.
Then once you've made a style you can do <div id="style">Styled Text</div>
i used to be NintendoNews. visit my blog or add me on twitter.
need help with vista? i am a microsoft certified technology specialist in configuring windows vista and connected home integrator.. pm me for help!
"I am the way, the truth, and the life. No one comes to the Father except through me"
John 14:6 (NIV)
CSS stands for Cascading Style Sheet. Basicly insted of useing old outdated tags e.g. <font> is uses syle="nameofstyle" inside the tag. Also I do NOT recomend you add the CSS to the top of the page I recomend you make a CSS document and just refer to it inside your HTML document.
Basically CSS ( Cascading Style Sheets ) is used to make your page more easier to edit and make a it browser friendly.
You can make your code less and quicker load time by linking your <Head> tag to a External Stylesheet like this:
And in this you can use newer tags in which browsers are more acustomed to and that is a lot easier to use such as:HTML Code:<LINK href="thestylesheet name.css" rel="stylesheet" type="text/css">
HTML Code:body { background: #000000; } And also for IE Scrollbar functions: { scrollbar-face-color : #000000; scrollbar-highlight-color : #000000; scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000; scrollbar-darkshadow-color : #000000; scrollbar-track-color : #000000; scrollbar-arrow-color : #000000; }
HTML is the code you code websites in, CSS is just something which you can use to style your page.
Some people think that using CSS is better because if you wanted to change something on your site, for example the background colour you would only need to change your CSS document - and not every page.
Someone mentioned the <div> tag, it can be used similar to a table. E.g.
Done with <table>:
Done with CSS:HTML Code:<table width="100" border="1" cellspacing="0" cellpadding="0"> <tr> <td>Hi</td> </tr> </table>
Code:#box { float: left; width: 100px; border: 1px #000 solid}HTML Code:<div id="box">Hi</div>
kinda quit.
Want to hide these adverts? Register an account for free!