A+ A-

Strong Text Html Tutorial

Anything that appears within <strong>...</strong> element is displayed as important text.

[code type="HTML Code"]
<!DOCTYPE html>
<html>
<head>
<title>Strong Text Example</title>
</head>
<body>
<p>The following word uses a <strong>strong</strong> typeface.</p>
</body>
</html>
[/code]

This will produce the following result:


The following word uses a strong typeface.



Anything that appears within ... element is displayed as important text.