FireFox | Poiesis Web Development

Posts Tagged ‘FireFox’

May
27

CSS Stylesheets

A cascading style sheet or CSS allows you to separate the presentation and content of your web sites, with your content contained in your (X)HTML files and your presentation defined in a CSS. The CSS can be an internal stylesheet defined in the head element of your html file, an external file referenced in the head element, or an inline style defined in an html element.

The Internal Stylesheet

If you use a CSS style in the header element you need to enclose it in a style element, as in:

<head>
<title>Your Page Title<title>
<style type="text/css">
CSS Content
</style>
</head>

Continue reading “CSS Stylesheets” »

Tags: , , , , , ,