Is there a way to format a single line of text with certain words bolded and the rest regular? I have a specific example pictured here: Picture of my Issue
Specifically, I'm looking to bold "Honors:" and "Capstone:", while keeping the surrounding text normal.
Here is the code I am currently using:
<section id= "about">
<div class= "container">
<div class= "row justify-content-center">
<div class= "col-sm-10">
<img src="assets/testLogo.png" width="200" height="200" alt="" class="img-fluid logoImages ">
<h1 class="text-center pt-4">XYZ College</h1>
<h5 class="text-center pt-3">B.A In Cool Stuff XYZ Test 123</h5>
<h6 class="text-center pb-3">September 20xx - May 20xx</h6>
<h6 class="text-center pt-3">Honors: XYZABC Honorary Scholarship</h6>
<h6 class="text-center pt-3">Capstone Title: The Study of supernatant fluids in extremely inert atmospheres and high temperatures</h6>
</div>
</div>
</div>
</section>
Another related question is how to align the text to the left so that "Honors...." and "Capstone..." start on the same line and wrap down as needed for equal spacing on each side?
Thank you for your help!