How do I attatch a CSS to my html document?

Hi, i'm a VERY newbie web designer and i'm trying to make a simple webpage with a seperate CSS page. I know how to put the CSS into my html document just using the <style></style> tags but somewhere I saw someone who had there stuff set up so they could start the div normal; but the css was on another page. Can anyone help me?

btw: sorry about how messed up I asked this, probably could've thought of another way.
 
on your css page you can customize how each attribute will affect your content

so for example, on your css page, to change the div it would look like this

div {font-family:helvetica;font-color:blue;}
etc... you can customize the content of any tag with your css page.
 
css embeds into html, because css IS an html script language. you shouldn't have to make a separate page. i never had to.
 
Back
Top