Showing
1 changed file
with
33 additions
and
0 deletions
table_test.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html lang="ko"> | ||
3 | + <body> | ||
4 | + <table border="1"> | ||
5 | + <caption>홈런순위</caption> | ||
6 | + <thead> | ||
7 | + <tr> | ||
8 | + <th>이름</th> | ||
9 | + <th>홈런</th> | ||
10 | + </tr> | ||
11 | + </thead> | ||
12 | + <tbody> | ||
13 | + <tr> | ||
14 | + <td>이대호</td> | ||
15 | + <td>41</td> | ||
16 | + </tr> | ||
17 | + <tr> | ||
18 | + <td>최진행</td> | ||
19 | + <td>27</td> | ||
20 | + </tr> | ||
21 | + <tr> | ||
22 | + <td>홍성흔</td> | ||
23 | + <td>26</td> | ||
24 | + </tr> | ||
25 | + </tbody> | ||
26 | + <tfoot> | ||
27 | + <tr> | ||
28 | + <th colspan="2">2010-08-22</th> | ||
29 | + </tr> | ||
30 | + </tfoot> | ||
31 | + </table> | ||
32 | + </body | ||
33 | +</html> |
-
Please register or login to post a comment