comment en gras text css en ligne
<p style="font-weight:bold">Hey there</p>
Neo the Elephant
<p style="font-weight:bold">Hey there</p>
<html>
<head>
<title>Bold text</title>
</head>
<body>
<p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
</body>
</html>
<!--Emphasized bold text. It's for content that is of greater importance-->
<strong>I'm a content</strong>
<!--Bold text. It's used to draw attention to text without indicating that it's more important-->
<b>I'm another content</b>
h1{
font-weight: bold;
}
<!DOCTYPE html>
<html>
<head>
<title>HTML text bold</title>
</head>
<body>
<h2>Our Products</h2>
<p>Developed 10 <strong>Android</strong> apps till now.</p>
</body>
</html>
#bold text:
<strong> this is bold </strong>