File: tables.html

package info (click to toggle)
ruby-reverse-markdown 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: ruby: 1,452; makefile: 4
file content (53 lines) | stat: -rw-r--r-- 1,087 bytes parent folder | download | duplicates (2)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
  <body>
    some text...

    <table>
      <thead>
        <colgroup>
          <col span="2" style="background-color:red">
          <col style="background-color:yellow">
        </colgroup>
      </thead>
      <tbody>
        <tr>
          <th>header 1</th>
          <th>header 2</th>
          <th>header 3</th>
        </tr>
        <tr>
          <td>data 1-1</td>
          <td>data 2-1</td>
          <td>data 3-1</td>
        </tr>
        <tr>
          <td>data 1-2</td>
          <td>data 2-2</td>
          <td>data 3-2</td>
        </tr>
      </tbody>
      <tfoot>
        <tr>
          <td>footer 1</td>
          <td>footer 2</td>
          <td>footer 3</td>
        </tr>
      </tfoot>
    </table>

    <table>
      <tr>
        <th><i>header oblique</i></th>
        <th><strong>header bold</strong></th>
        <th><code>header code</code></th>
      </tr>
      <tr>
        <td><i>data oblique</i></td>
        <td><strong>data bold</strong></td>
        <td><code>data code</code></td>
      </tr>
    </table>

    some text...
  </body>
</html>