Demo of BlockQuote and style properties with CSS


This text is before blockquote
This is within blockquote tags
Normal text after blockquote

HTML

This text is before blockquote 
<blockquote>This is within blockquote tags</blockquote> 
Normal text after blockquote

Style

<style>
blockquote { 
 font-size: 20px;
 color:green;
 padding: 20px;
}
</style>