A+ A-

Internal Stylesheet

This way you are simply placing the CSS code within the <head></head> tags of each (X)HTML file
you want to style with the CSS.

[code type="HTML"]<head>
<title><title>
<style type="text/css">
CSS Content Goes Here
</style>
</head>
<body>
[/code]

With this method each (X)HTML file contains the CSS code needed to style the page. Meaning that any changes you want to make to one page, will have to be made to all. This method can be good if you need to style only one page, or if you want different pages to have varying styles.

With this method each (X)HTML file contains the CSS code needed to style the page. Meaning that any changes you want to make to one page, will have to be made to all. This method can be good if you need to style only one page, or if you want different pages to have varying styles.