يُستخدم لإبراز النص المهم ويظهر عادةً بالخط العريض.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inline CSS Strong Example</title>
</head>
<body>
<p style="font-size: 16px; color: #333;">
This is an example of <strong style="color: #e74c3c;">strongly emphasized text</strong> within a paragraph.
</p>
</body>
</html>
This is an example of strongly emphasized text within a paragraph.