Edit in JSFiddle

<table align="left" width="400" height="230" border="1">
<tr bgcolor="ffc5fc" height="70">
  <th valign="top">이름</th> <th valign="bottom">매출</th> <th>순위</th>
</tr>
<tr>
  <td width="20%" rowspan="3">옹봉이</td> <td>890원</td> <td>1위</td>
</tr>
<tr>
  <td>830원</td> <td>2위</td>
</tr>
<tr>
  <td>750원</td> <td>3위</td>
</tr>
<tr>
  <td>합계</td> <td align="right" colspan="2">2470원</td>
</tr>
</table>
<p>Valign은 수직 정렬을 하기위해 height로</p>
<p>높이값을 줘야 움직일 공간이 생기겠죠?</p><br>
<p>rowspan과 colspan은 합칠 행, 열의</p>
<p>개수를 적어주면 되요.</p>