View Full Version : Where Can We Post Our CCS's


waldengirl0
10-02-2005, 06:29 AM
I have no clue where to post the ccs. Like what web sites can we put it on. Yeah I am new to this whole thing, so please help me. :(

gatiso
10-02-2005, 07:36 AM
Do you mean hosting? free ones like geocities or angelfire are everywhere...if that's what you mean. CSS style sheets go in between the head tags, if thats what you mean...

adrielle
10-02-2005, 08:06 AM
Or if you meant to link an external stylesheet, all you have to do is upload it into your web server and add this:
<LINK href="mystylesheet.css" rel="stylesheet" type="text/css">
to your code :)
How do I link to an external style sheet? Add the following code in the <head> tag of your html document. You have to add this tag to every page you want to put the style sheet on:

<LINK href="mystylesheet.css" rel="stylesheet" type="text/css">

Add your style sheet to a plain text editor like Notepad or Simpletext. Make sure you name it with the .css extension. If you're having trouble saving it as .css, put it in quotes when you try to save it, for example: "mystylesheet.css." Here is a sample, remember not to add the style tags to your text file:

A:link
{ text-decoration: none; }

body
{ background-color: #000000; }


Upload the style sheet to your server and all of your pages will show the new style attributes. This is convienient because when you want to change the style of your whole site, you only have to edit and upload one small file to accomplish this.