New HTML

Html code posted by Quintus
created at 14 Apr 22:03

Edit | Back
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
<!DOCTYPE html>
<html lang="en-US">
  <head>
    <link rel="stylesheet" href="styleguide.css">
    <meta charset="utf-8">
    <title>
      Mysterious Page of Tables
    </title>
  </head>
  <body>
    <hr>
    <h1>
      Mysterious Page of Tables
    </h1>
    <hr>
    <table id="graphone" style="width:100%">
      <caption> Goat birth Dates </caption>
      <tr>
  <th>Goat name</th>
  <th>type</th>
  <th>Birth Date</th>
  <th>Year</th>
      </tr>
      <tr>
  <td>Cinnamon</td>
  <td>2 boys</td>
  <td>March 10</td>
  <td>2015</td>
      </tr>
      <tr>
  <td>Silky</td>
  <td>1 boy</td>
  <td>March 14</td>
  <td>2015</td>
      </tr>
      <tr>
  <td>Pebbles</td>
  <td>2 girls, 1 boy</td>
  <td>March 14</td>
  <td>2015</td>
      </tr>
    </table>
      <!-- border-collapse:collapse collapses multiple borders into one line. -->
      <!-- <tr> table-rows, <td> table-data, <th> Table-headers. -->
  </body>
</html>
960 Bytes in 2 ms with coderay