28 lines
658 B
HTML
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> |