about summary refs log tree commit diff
path: root/usth/ICT3.2/prac/1/task9.html
blob: 22ec14f7a938a93d8512a9148100aad961f6851b (plain) (blame)
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
<!DOCTYPE html>
<html>
<style>
table, th, td {
    border: 2px solid white;
    border-collapse: collapse;
}
th, td { padding: 1em }
th {
    font-weight: bold;
    background-color: #1f497d;
}
tr { text-align: center }
tr:nth-child(odd) { background-color: #d0d8e8 }
tr:nth-child(even) { background-color: #e9edf4 }
</style>

<body>
  <table>
    <thead>
      <tr>
        <th style='width: 21em'>Subject</th>
        <th style='width: 12em'>ECTS</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Math</td>
        <td>3</td>
      </tr>
      <tr>
        <td>Physics</td>
        <td>5</td>
      </tr>
      <tr>
        <td>Chemistry</td>
        <td>4</td>
      </tr>
      <tr>
        <td>English</td>
        <td>3</td>
      </tr>
    </tbody>
</body>
</html>