How do you make letters in bold? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do you make letters in bold?

18th Nov 2017, 12:43 AM
DiamondDude TV
6 Answers
+ 9
1You can use <b> or <strong> 2. <p style="font-weight:bold;"></p> 3. p{ font-weight:bold; }
18th Nov 2017, 1:19 AM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 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; }
18th Nov 2017, 12:44 AM
AgentSmith
+ 3
var spn = getElementById("bold"); spn.style.fontWeight = "bold";
18th Nov 2017, 12:48 AM
John Wells
John Wells - avatar
+ 2
<span id="bold">again</span> #bold {font-weight: bold;}
18th Nov 2017, 12:46 AM
John Wells
John Wells - avatar
+ 2
Note <b> or <strong> goes inside the elements
18th Nov 2017, 1:21 AM
๐Ÿ‘‘ Prometheus ๐Ÿ‡ธ๐Ÿ‡ฌ
๐Ÿ‘‘ Prometheus ๐Ÿ‡ธ๐Ÿ‡ฌ - avatar
+ 1
<b>I'm bold</b>
18th Nov 2017, 12:43 AM
John Wells
John Wells - avatar