05-08-2008

CSS/(X)HTML CSS inline, internal and external

External CSS file include:

<head>
	 <link rel="stylesheet" type="text/css" href="style.css" />
</head>

Internal CSS style definition:

<head>
	<style type="text/css">
		body {background: #000000; }
		p {margin-left: 20px; color: lime}
	</style>
</head>

Inline CSS:

<span style="color:sienna; font-weight:bold">
	Isn't that something!
</span>

Comments:

Your comment:

»

 

[x]