
Anonymous A. answered 11/26/19
HTML, CSS and Web Design Expert
Hello Ashley,
I'll expand on Art's answer a little bit.
There are several ways to bold text in an HTML document, but the most used methods involve using either <b> or <strong>. The first method although valid isn't the recommended method, because usually bold text denotes something important, something worth differentiating from the text surrounding it, hence the second method using <strong> is the recommended way.
With this being said, your paragraphs should have the text/words that are bold inside the <strong> tags, like this:
[Extract from What is a Web Designer? https://www.technojobs.co.uk/info/it-job-roles/what-is-a-web-designer.phtml]
Now you can do what Art suggests to style the first bold text in all the paragraphs:
Keep in mind that you don't have to make the text bold via CSS because it's already bold by using the <strong> tag.
I can explain why the text turns bold by using the <strong> tag, but that answer is out of scope of your question. Just let me know if you'd like to know anyway :)
Hope this was clear, if it wasn't, no worries, keep asking and we'd be glad to help.
Here's a demo: https://jsfiddle.net/cymuroav/
Ashley P.
So we are asked to write only the external CSS rules here. Plus we are required to identify the first bold word too. How do we accomplish both?11/17/19