JSFiddle - React, Tailwind, and code Playground

by Bernardo Alfonso Borunda Jaquez

HTML

<body>
    <h4>I want to add a pdf here.</h4>
    <h2 style="font-style: italic; font-family: Arial; text-align: center;">Header 1</h2>
<div>
<hr>
    <center>
        <div class="barcodeVal">Title1</div>
        <h2 style="text-align: center; margin-top: 3px">Subtitle1</h2>
    </center>
    <hr>
        <p style="font-family: Arial;">Description</p>
        <table style="width:100%; font-size:12px">
            <thead>
                <tr style="font-weight: bold;">
                    <td style="width: 50px;">#</td>
                    <td>Serial</td>
                    <td>Model ID</td>
                    <td>Model Description</td>
                    <td>Transaction ID</td>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>25</td>
                    <td>1111111111</td>
                    <td>Model A</td>
                    <td>Model A description</td>
                    <td>03288041P4</td>
                </tr>
            </tbody>
        </table>
    </div>
    <h2 style="font-style: italic; font-family: Arial; text-align: center;">Header 2</h2>
<div>
<hr>
    <center>
        <div class="barcodeVal">Title2</div>
        <h2 style="text-align: center; margin-top: 3px">Subtitle2</h2>
    </center>
    <hr>
        <p style="font-family: Arial;">Description</p>
        <table style="width:100%; font-size:12px">
            <thead>
                <tr style="font-weight: bold;">
                    <td style="width: 50px;">#</td>
                    <td>Serial</td>
                    <td>Model ID</td>
                    <td>Model Description</td>
                    <td>Transaction ID</td>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>25</td>
                    <td>1111111111</td>
                    <td>Model A</td>
                    <td>Model A description</td>
                    <td>03288041P4</td>
                </tr>
      ...