+ 3
I am a SIMPLE guy. Here i want that SIMPLE word in Bold type. How can i make it?( Internal and External if possible) if not why?
Alert/Condition : not in Inline, only in Internal and External if possible. If not Why?
9 odpowiedzi
+ 9
You can write text in <b> </b> tags .👈👈HTML
also add
font- weight : bold 👈👈 in CSS.
+ 6
You can use <b> tag or font-weight: bold css property
+ 3
Example In HTML:
<b> Hello! </b>
Example In Css:
#demo{
font-weight:bold;
}
+ 2
yeah
+ 2
You can do it with..
font-weight: bold;
In internal or external css.
+ 1
<b> for HTML
font-weight:bold; for CSS
+ 1
you can use the <strong> tag as well.
0
font-weight:bold in CSS
<b> </b> in HTML
0
Muhtasim Khandaker Abyaz oh yea, that as well