I am very sorry for the rudeness.
I would like to use bold font for the first two characters and normal font for the two characters in the site creation template as shown below. Could you please let me know how to use css or set it directly in the template?
Sports: Baseball
<p>Sports:</p>baseball>/p>
To specify a style for the element directly.
<p style="font-weight:bold">Sports:</p>
If you are classifying and specifying it in a separate style sheet.
elements:
<p class="category">Sports:</p>
Style Sheet:
.category{
font-weight:bold;
}
© 2024 OneMinuteCode. All rights reserved.