JSFiddle - React, Tailwind, and code Playground

HTML

<fieldset class="fldset-class">

<legend class="legend-class">Your Personal Inormation</legend>
<table><tr>
    <td><label>Name</label></td>
    <td><input type='text' name='name'></td></tr><tr>
    <td><label>Address</label></td>
        <td><input type='text' name='Address'></td></tr><tr>
        <td><label>City</label></td>
            <td><input type='text' name='City'></td></tr>
        </table>
</fieldset>

CSS

.fldset-class{
    border: 5px black solid;
}
.legend-class{
    border: 1px black solid; 
    margin-left: 1em; 
    padding: 0.2em 0.8em;
    background-color:black;
    color:white;
}