• This project
    • Loading...
  • Sign in

전준호 / ex

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ex
  • table_example.html
  • 전준호's avatar
    html example · 13b719d1
    13b719d1
    전준호 authored 2017-03-21 08:59:01 +0900
table_example.html 461 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<html>
<body>
<table border="1">
  <caption>홈런순위</caption>
  <thead>
    <tr>
      <th>이름</th>
      <th>홈런</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>이대호</td>
      <td>41</td>
    </tr>
    <tr>
      <td>최진행</td>
      <td>27</td>
    </tr>
    <tr>
      <td>홍성흔</td>
      <td>26</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <th colspan="2">2010-08-22</th>
    </tr>
  </tfoot>
</table>
</body>
</html>