CSS COURSE • LESSON
📝 CSS Text
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Text
CSS provides many properties to control text appearance.
Text Color
p {
color:white;
}
Text Alignment
h1 {
text-align:center;
}
Text Decoration
a {
text-decoration:none;
}
Text Transform
h1 {
text-transform:uppercase;
}