Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
ul.a {
list-style-type: circle;
}
ul.b {
list-style-type: square;
}
ol.c {
list-style-type: upper-roman;
}
ol.d {
list-style-type: lower-alpha;
}
</style>
</head>
<body>
<h1>Свойство list-style-type</h1>
<p>Маркированный список:</p>
<ul class="a">
<li>Кофе</li>
<li>Чай</li>
<li>Кока Кола</li>
</ul>
<ul class="b">
<li>Кофе</li>
<li>Чай</li>
<li>Кока Кола</li>
</ul>
<p>Нумерованный список:</p>
<ol class="c">
<li>Кофе</li>
<li>Чай</li>