Forgot Password / Register
Site Statistics
Total Members: 520
Total Tutorials: 242
Newsest User: 8884244477
Todays Unique Hits: 463
0 Users 1 Guests Online

Intergrating CSS Into Your Site

There are 2 common ways to intergrate CSS into your site. The first is by adding a direct link to your document and the second is by putting the style at the top, here are exmaples of both of them.

1. Insert the following code between the <HEAD> tag.

Code
<LINK REL=stylesheet HREF="linktoyourstylesheet.css" TYPE="text/css">


2. Stick this in the same position as the first example.

Code
<style type="text/css">
body {
codes here
}
</style>


And there you have it, the two most common ways to intergrate CSS into your site.

Enjoy :D
Craig
Author:
Views:
1984
Rating:
There are currently no comments for this tutorial.