JSFiddle - React, Tailwind, and code Playground

HTML

<p>This is the first paragraph in the document.</p>
<p>This is the second paragraph in the document.</p>
<p>This is the third paragaraph in the document.</p>

CSS

@import url(http://fonts.googleapis.com/css?family=Libre+Baskerville&subset=all);
*
{
    font-family: 'Libre Baskerville';
    -moz-font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
    -webkit-font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
    -o-font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
    font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}
p
{
    display: inline;
}
p + p:before
{
    color: red;
    content: '¶';
}