It is helpful if you provide what you've tried.
<style>
#MyTable {
width: 60%;
}
#MyTable td.bottomBorder {
border-bottom: 1px solid black;
}
#MyTable td.nowrap {
white-space: nowrap;
width: 10%;
}
#MyTable td {
line-height: 2em;
}
</style>
Simple table
<table id="MyTable">
<tr>
<td class="nowrap">First Name:</td>
<td class="bottomBorder"></td>
<td class="nowrap">Last Name:</td>
<td class="bottomBorder"></td>
</tr>
<tr>
<td>Address:</td>
<td class="bottomBorder" colspan="3"></td>
</tr>
<tr>
<td> </td>
<td class="bottomBorder" colspan="3"></td>
</tr>
<tr>
<td>City:</td>
<td class="bottomBorder" colspan="3"></td>
</tr>
<tr>
<td>Notes:</td>
<td class="bottomBorder" colspan="3"></td>
</tr>
<tr>
<td> </td>
<td class="bottomBorder" colspan="3"></td>
</tr>
<tr>
<td> </td>
<td class="bottomBorder" colspan="3"></td>
</tr>
</table>