You can set multiple properties in CSS by using a single rule set within curly braces {}
for a specific selector. Each property is defined by specifying the property name followed by a colon :
and the value, ending with a semicolon ;
.
Here’s an example:
h1 {
color: blue;
font-size: 24px;
text-align: center;
}