Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.disc {
list-style: disc;
}
.square {
list-style: square;
}
.armenian {
list-style: armenian;
}
.lower-greek {
list-style: lower-greek;
}
</style>
</head>
<body>
<ul>
<li class="disc">Disc bullet</li>
<li class="square">Square bullet</li>
<li class="armenian">Armenian bullet</li>
<li class="lower-greek">Lower-greek bullet</li>
</ul>
</body>
</html>