Contents / Previous / Next


Cascading Style-Sheets (CSS)

The style of a HTML document is defined in
Cascading Style-Sheets (CSS).
Style includes fonts, colors, layout, etc.
CSS can be in declared in the head of the document: <HTML> <HEAD> <TITLE>CSS</TITLE> <LINK rel=stylesheet type="text/css" href="my.css"> </HEAD>

Style specification can also be included
directly in a tag ( red and big blue ):

<SPAN style="color:red"><B>red</B></SPAN> and <SPAN style="color:blue;font-size:200%"> <B>big blue</B></SPAN>