<!DOCTYPE html>
<html>
<head>
<style>
address {
display: block;
font-style: italic;
}
</style>
</head>
<body>
<p>By default, an address element is displayed like this:</p>
<address>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
<p>A customized address element (changed font-style):</p>
<address style="font-style:normal;">
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
</body>
</html>