In the following code-snippet, what is the correct way to change the font size of the h1 heading to 24px?

<h1>The best bakery</h1>
<p>We make fine bread</p>
h1{
font-size: 24px;
}
p{
font-weight: bold;
}
p{
font-size: 24px;
}
h1{
font-weight: bold;
}

1 answer

The correct way to change the font size of the h1 heading to 24px is:

h1{
font-size: 24px;
}