Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<style>
ol {
background: #1c87c9;
padding: 20px;
color: cyan;
}
ul {
background: #8ebf42;
padding: 20px;
}
ol li {
background: #666;
padding: 5px;
margin-left: 35px;
}
ul li {
background: #eee;
margin: 5px;
}
</style>
</head>
<body>
<ol>
<li>Кофе</li>
<li>Чай</li>
<li>Молоко</li>
</ol>
<ul>
<li>Кофе</li>
<li>Чай</li>
<li>Молоко</li>
</ul>
</body>