CSS styles for paragraphs, block quotes, and address blocks
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body {
font-family: sans-serif;
padding: 24px;
}
p {
text-align: justify;
line-height: 1.5em;
}
blockquote {
font: 15pt cursive;
background-color: #cccccc;
padding: .5em;
border: 2px dotted;
}
address {
margin-left: 50%;
font-family: courier,monospace;
}
</style>
</head>
<body>
<p>This is a test:</p>
<blockquote>Quotations.</blockquote>
<p>This is a test:</p>
<address>
Author<br/>
a@gmail.com
</address>
</body>
</html>
Related examples in the same category