<html>
<head>
<style>
/* Default CSS Values */
img {
display: inline-block;
}
</style>
</head>
<body>
<p>An img element is displayed like this:</p>
<p>Some text <img src="smiley.gif" alt="Smiley face" width="42" height="42"> some text.</p>
<p>A customized img element (changed display):</p>
<p>Some text <img src="smiley.gif" alt="Smiley face" width="42" height="42" style="display:block;"> some text.</p>
</body>
</html>