+ 1
Html
Have any other Code for Bold Text except <b> ?
4 Answers
+ 3
<span style="font-weight: bold">your bold text</span>
+ 2
if any one know more code for Bold Text Please answer
+ 1
There is the <strong> tag, but use it only if you want to mark some text as important.
You can also create a CSS file to define som element as bold, changing its color, etc
+ 1
example for <p> tag in css file:
p {
color: #f00;
font-weight: bold;
}