One of the challenges I'm facing involves an HTML h3 tag, as shown below:
<div class="centrar">
<h3>Lorem ipsum dolor!</h3>
</div>
I attempted to change it to an H4 using CSS, but unfortunately, my efforts have been unsuccessful. Here is what I've tried:
.centrar h3 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
font-size: 24px;
}
Despite these changes, the text remains the same size and weight as an h3. The guideline stipulates that I cannot make any alterations to the HTML, so I need to find a solution solely within the realm of CSS.