+ 2
What is the code to make the text thick
html?
9 Réponses
+ 11
1. <p> <b>bold</b> </p>
2.<p style="font-weight:bold;">bold</p>
3. p{
font-weight:bold;
}
<p> bold </p>
+ 6
or
<strong>text</strong>
+ 5
use tag
<b>Text</b>
+ 5
css font-weight
+ 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/
+ 2
https://code.sololearn.com/Wiv2KlkSi6aP/?ref=app
+ 2
by using strong tag
0
can yu suggest me with example s
0
<html>
<head>
<title>first page</title>
</head>
<body>
<p><b> bold text </b></p>
<p><strong> strong text </strong></p>
</body>
</html>