Styling Text
CSS gives you tons of options for text styling. Here are some basics:
Font Properties:
p {
font-family: Arial, sans-serif; /* Font type */
font-size: 16px; /* Font size */
font-weight: bold; /* Font weight (bold, normal) */
}
Text Alignment and Color:
h1 {
text-align: center; /* Aligns the text to the center */
color: darkblue; /* Text color */
}