What is the code to make the text thick | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is the code to make the text thick

html?

17th Jul 2018, 12:25 PM
Shekhar Rajbhar
Shekhar Rajbhar - avatar
9 Answers
+ 11
1. <p> <b>bold</b> </p> 2.<p style="font-weight:bold;">bold</p> 3. p{ font-weight:bold; } <p> bold </p>
17th Jul 2018, 1:34 PM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 6
or <strong>text</strong>
17th Jul 2018, 12:30 PM
Suraj Jha
Suraj Jha - avatar
+ 5
use tag <b>Text</b>
17th Jul 2018, 12:28 PM
Suraj Jha
Suraj Jha - avatar
+ 5
css font-weight
17th Jul 2018, 12:30 PM
Calviղ
Calviղ - avatar
+ 3
Hello, Shekhar Rajbhar ! Please use the search in the section with lessons. And then you can understand everything yourself, in any case, a suitable lesson was found for you. Good luck with programming on SoloLearn! https://www.sololearn.com/learn/HTML/1026/
17th Jul 2018, 1:11 PM
Alexander Sokolov
Alexander Sokolov - avatar
+ 2
https://code.sololearn.com/Wiv2KlkSi6aP/?ref=app
17th Jul 2018, 12:45 PM
cyk
cyk - avatar
+ 2
by using strong tag
17th Jul 2018, 1:59 PM
Vivek Chauhan
Vivek Chauhan - avatar
0
can yu suggest me with example s
17th Jul 2018, 12:33 PM
Shekhar Rajbhar
Shekhar Rajbhar - avatar
0
<html> <head> <title>first page</title> </head> <body> <p><b> bold text </b></p> <p><strong> strong text </strong></p> </body> </html>
17th Jul 2018, 1:56 PM
Rafey Iqbal Rahman
Rafey Iqbal Rahman - avatar