View Full Version : a little help


EmpTcaN
05-29-2003, 10:15 PM
okay... i know i've done this before but i just forgot how to do it now.

i had saved a link, a background, a font, and a cursor each in an individual css format.
and i want to use them in almost every page in my website
i just wanna know how to link them.
i remember i had to first do this:

<style type="text/css"><!--


the something the link

--></style>
you know......
instead of copying and pasting the whole script every time, i can just add a link

Lemon Squash
05-29-2003, 10:36 PM
<link rel="stylesheet" href="style.css" type="text/css"> ?

EmpTcaN
05-29-2003, 10:41 PM
i think it's the href ="style.css"
like the one you put
thanks man

but i'm still not so sure cuz i'm suppose to put it in the middle of the opening and the closing
so i just put href="style.css"?
or was it src=style.css?

Lemon Squash
05-29-2003, 10:43 PM
lol no prob!

EmpTcaN
05-29-2003, 10:47 PM
no..... i tried it still won't work

EmpTcaN
05-29-2003, 11:10 PM
i dont' know what's wrong

this is what i did
i saved this in a css format

<style type="text/css">
<!--
A:visited
{ text-decoration: none; color:white}
A:hover
{ text-decoration: underline overline; color:white;
cursor:move}
-->
</style>

then, i open my editing
and add this

<html>
<head>
<title>Untitled</title>
</head>

<style type="text/css">
<!--
<link rel="stylesheet" href="style.css" type="text/css">
-->
</style>

<body>



</body>
</html>

but it doesn't seem to work

EmpTcaN
05-29-2003, 11:17 PM
never mind i've solve my own problem
it's
<style type="text/css">
<!--
@import url ('style.css');
-->
</style>