/
Da11oS
/
css_styles_examples
Обзор
Документация
Войти
/
Da11oS
/
css_styles_examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
weight_color.html
32 строки
996 B
Da11oS
init
09 июл 2025, 22:31
09 июл 2025, 22:31
f3aeeea
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8" /> <title>font-weight и color</title> <style> .normal { font-weight: 400; } .bold { font-weight: 700; } .bolder { font-weight: bolder; } .red { color: red; } .green { color: green; } .blue { color: blue; } .hex { color: #9932cc; } /* Темно-фиолетовый */ .rgb { color: rgb(255, 165, 0); } /* Оранжевый */ .rgba { color: rgba(0, 128, 0, 0.5); } /* Полупрозрачный зелёный */ </style> </head> <body> <p class="normal red">Обычный (400), красный</p> <p class="bold green">Жирный (700), зелёный</p> <p class="bolder blue">Ещё жирнее (bolder), синий</p> <hr> <p class="normal hex">Обычный (400), #9932cc</p> <p class="bold rgb">Жирный (700), rgb(255, 165, 0)</p> <p class="bolder rgba">Ещё жирнее (bolder), rgba(0, 128, 0, 0.5)</p> </body> </html>