JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE HTML>
<html>
<head>
    <title>Example</title>
</head>
<body>
    <div class="headline">
        <h1>Headline</h1>
        <p>And here the text right after...</p>
    </div>
</body>
</html>

CSS

.headline h1, .headline p {
    display: inline;
    vertical-align: top;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;    
}
.headline h1 {
    font-weight: bold;
}