How can i code an external style sheet to link to a html?

First N

New member
I have linked my external style sheet to my html page with the following code:

<link rel="stylesheet" type="text/css" href="css/mystyles.css" />

But i dont know what code to enter to follow this code to make the current page refer back to the mystyle.css to grab the informatino for the background,etc. from.
I have linked my external style sheet to my html page with the following code:

<link rel="stylesheet" type="text/css" href="css/mystyles.css" />

But i dont know what code to enter to follow this code to make the current page refer back to the mystyle.css to grab the informatino for the background,etc. from because i will be using one css to link information to 4 pages rather than one
 
If you put that link in your page's head section, and you upload the mystyles.css file to a directory named css, your page should automatically use the styles specified.
 
Back
Top