Is there a way to remove bold styling from part of a header?
<h1>**This text should be bold**, but this text should not</h1>
Is there a way to accomplish this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could wrap the not-bold text into a span and give the span the following properties:
and
See: http://jsfiddle.net/MRcpa/1/
Use
<span>when you want to change the style of elements without placing them in a new block-level element in the document.