Okay, so I know that in HTML you can use the <b> tag, but isn't there a "weight=bold" attribute that I can use in the <p> tag?
Or is that in CSS, or Javascript?
|
|
|
|
|
|
|
You're thinking of the CSS property
|
||||||||
|
|
|
Its in CSS you have to set |
|||
|
|
|
|
It's all historical and dates from a time where dinosaurs walked the earth and CSS didn't exist. More seriously, forget about the b tag and use font-weight:bold in a CSS rule :) |
||
|
|
|
|
you could also do <p style="font-weight:bold;">bold text here</p> |
||||||||
|
|
|
If the text's meaning is semantically 'strong', use the
Some people still use the |
||||||||||
|
|
|
Also consider the Although, if you are bolding the entire paragraph, you may not want to use it--I'm not sure what the affect on screen readers would be. |
||||||||||||||
|
|
|
On a sidenote the below code will also make it bold.
|
||
|
|
|
Use the |
||
|