Для оформления текста в CSS используются свойства font-size, font-family, font-weight, font-style, text-align, text-decoration, color и другие.
Примеры:
- Установить размер шрифта и семейство шрифта:
p {
font-size: 16px;
font-family: Arial, sans-serif;
}
- Установить жирность и стиль шрифта:
h1 {
font-weight: bold;
font-style: italic;
}
- Установить цвет текста и выравнивание:
h2 {
color: #333;
text-align: center;
}
- Добавить подчеркивание к тексту:
a {
text-decoration: underline;
}
- Использовать Google Fonts:
@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
font-family: 'Roboto', sans-serif;
}