<html>
<head>
<style>
/* Default CSS Values */
strong {
font-weight: bold;
}
</style>
</head>
<body>
<p>A strong element is displayed like this:</p>
<strong>Some important text.</strong>
<p>A customized strong element (changed "font-weight"):</p>
<strong style="font-weight:normal;">Some important text.</strong>
</body>
</html>