Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</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">Круглый маркер</li>
<li class="square">Квадратный маркер</li>
<li class="armenian">Армянский маркер</li>
<li class="lower-greek">Греческий маркер</li>
</ul>
</body>
</html>