In css <html>
<head>
<title>Titolo del documento</title>
<style type="text/css">
BODY { background:#FFFFD1; color:#000000; text-align:left;
margin-left : 250px; margin-right: 250px}
ol {list-style-position : inside}
ul {list-style-position : outside}
</style>
</head>
<body>
- Prima voce
- Seconda voce
- Terza voce
<ul>[*]Prima voce[*]Seconda voce[*]Terza voce[/list]
</body>
</html>
in xhtml cioè html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
- 1
- 2
- 3
</body>
</html>