JSFiddle - React, Tailwind, and code Playground

by Shanid

HTML

<div id="presentation">
    <section>
        <div class="offers">
            <table class="locationtable" width="100%;" cellpadding="0">
                <tr>
                    <td width="50%"><span class="departureTime">03h00</span></td>
                    <td width="50%"><span>New-York</span></td>
                </tr>
                 <tr>
                    <td class="duration">8h00</td>
                    <td><span>Bahamas</span></td>
                </tr>
                
            </table>
        </div>
    </section>
</div>

CSS

.locationtable{
    width: 200px;
    margin: 0 auto;
    background: #eee;
}
table td{
    padding: 5px 10px;
    vertical-align: middle;
    text-align: center;
}
.departureTime,
.duration{
    color: blue;
}