CSS – Create Pull Quote
A pull quote (also known as a lift-out quote) is a quotation or excerpt from an article that is typically placed in a larger or distinctive typeface on the same page, serving to entice readers into an article or to highlight a key topic.

The Source Code to copy/paste:

.pullquote {
    width: 300px;
    float: right;
    margin: 5px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font: italic bold #ff0000 ;
}

My official WebSite >