JSFiddle - React, Tailwind, and code Playground

HTML

<p id="firstparagraph">
            The Bike the Mountains Tour rises from the town of Littleton, 
            Colorado and explores the Colorado Front Range. Our tour 
            crosses the Continental Divide twice, giving you the 
            opportunity to bike the highest paved roads in the 
            United States. This tour is a classic showcase of Colorado's 
            Rocky Mountain scenery.
         </p>

 <blockquote>
            <p>The Bike the Mountains Tour is <i>amazing</i>. I highly 
               recommend it and would gladly return.
            </p>
            <cite>&mdash; Steve H.</cite>
         </blockquote>

CSS

#firstparagraph::first-line{
    text-transform: uppercase;
}

blockquote p:before {
content: "\00ab"; 
}


blockquote p:after{
content: "\00bb"; 
}