Things You'll Need:
- Assumption: You already have a web site on a hosting server.
- Baisc text editor or some type of design software
-
Step 1
Create your CSS file with the text editor, or copy and paste the CSS from an existing page into a file by itself.
-
Step 2
Save the <style> information as it's own file ( style.css ) or any other name you choose.
-
Step 3
Inside the <head> </head> tags on the page enter:
<link href="style.css" rel="stylesheet" type="text/css"> -
Step 4
If the CSS file is inside it's own folder ( I would suggest this ), make sure the line:
<link href="style.css" rel="stylesheet" type="text/css">
Includes the full path to the file. -
Step 5
Save the web page file as normal.











