External style
(global)
<head> |
Style.css(a text file):
BODY {background: #DDDDDD}
P {text-align: center}
A:link {color: green}
|
Internal style
(global)
<head>
<title>Internal style </title>
<style>
<!--
BODY {background: #DDDDDD}
P {text-align: center}
A:link {color: green}
-->
</style>
</head>
|
Inline style (local)
<ul style="list-style: url('../images/shamrock.gif')">
<li>På den ene side</li>
<li>På den anden side</li>
</ul>
|
|