Quotation Source Style
Description
Style and content changes for simple variations on a standard <blockquote>
.
Add <small>
tag for identifying the source.
Wrap the name of the source work in <cite>
.
Example
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!--from ww w .j ava 2s . com-->
<body style='margin: 20px;'>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Integer posuere erat a ante.</p>
<small>Someone famous in <cite title="Source Title">Source
Title</cite></small>
</blockquote>
</body>
</html>