+ 1
How do you make letters in bold?
6 Réponses
+ 9
1You can use <b> or <strong>
2. <p style="font-weight:bold;"></p>
3. p{
font-weight:bold;
}
+ 6
CSS:
https://www.w3schools.com/cssref/pr_font_weight.asp
p.normal {
font-weight: normal;
}
p.thick {
font-weight: bold;
}
p.thicker {
font-weight: 900;
}
+ 3
var spn = getElementById("bold");
spn.style.fontWeight = "bold";
+ 2
<span id="bold">again</span>
#bold {font-weight: bold;}
+ 2
Note <b> or <strong> goes inside the elements
+ 1
<b>I'm bold</b>