Files
uni-web-site/old/lectures/lec2/part1/task3.html
2026-02-26 21:55:48 +10:00

28 lines
658 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Задание 3</title>
<style>
.blue-bold {
font-weight: bold;
color: blue;
}
.big-font{
font-size: 20px;
color: green;
}
.center-red {
color: red;
text-align: center;
}
</style>
</head>
<body>
<p class="blue-bold">Каскадность CSS:</p>
<ul>
<li class="center-red">расширение свойств;</li>
<li class="big-font center-red">переопределение свойств.</li>
</ul>
</body>
</html>