added readme for lectures lec2 done

This commit is contained in:
2026-01-01 20:05:31 +10:00
parent f82e4a7bb3
commit 9faac87716
5 changed files with 193 additions and 0 deletions

28
lectures/lec2/task3.html Normal file
View File

@@ -0,0 +1,28 @@
<!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>