JSFiddle - React, Tailwind, and code Playground

HTML

<article> 
    <h2>Movies</h2>
    <h4>Genres</h4>
    <p>Below you can see the <b>available genres</b>:</p>
    <p>1. Action</p>
    <p>2. War</p>
    <p>3. Comedy</p>
    <p>4. Terror</p>
</article>
// ----------------------------------------- //
<section>
    <header>
        <h2>Movies</h2>
        <h4>Genres</h4>
        <p>Below you can see the <b>available genres</b>:</p><!-- <b> or <strong>?-->
    </header>
    <ol>
        <li>Action</li>
        <li>War</li>
        <li>Comedy</li>
        <li>Terror</li>
    </ol>
</section>