<!DOCTYPE html>
<html>
  <head>
    <title>Hello, World!</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
      <table style="width:100%" border="1" >
        <caption>Šis ir tabulas virsraksts, kas aizņem tabulas platumu un centrējās</caption>
        <colgroup>
          <col style="background-color:#17F40B">
          <col span="5" style="background-color: white">
          <col span="2" style="background-color:yellow">
          
          
        </colgroup>
        <thead>
          
        
        <tr>
          <th id="ned" rowspan="3">nedela</th>
          <th id="vs" colspan="8" rowspan="2">2025 gads maijs</th>
        </tr>
        <tr>
        </tr>
        <tr class="dienas">
          <th >Pirmdiena</th>
          <th >Otrdiena</th>
          <th >Trešdiena</th>
          <th >Ceturtdiena</th>
          <th >Piektdiena</th>
          <th >Sestdiena</th>
          <th >Svētdiena</th>
        </tr>
        </thead>
        <tbody>
        <tr>
          <td >18</td>
          <td></td>
          <td></td>
          <td></td>
          <td>1</td>
          <td>2</td>
          <td>3</td>
          <td>4</td>
        </tr>
        <tr>
          <td >19</td>
          <td>5</td>
          <td>6</td>
          <td>7</td>
          <td>8</td>
          <td>9</td>
          <td>10</td>
          <td>11</td>
        </tr>
        <tr>
          <td >20</td>
          <td>12</td>
          <td>13</td>
          <td>14</td>
          <td>15</td>
          <td>16</td>
          <td>17</td>
          <td>18</td>
        </tr>
        <tr>
          <td>21</td>
          <td>19</td>
          <td>20</td>
          <td>21</td>
          <td>22</td>
          <td>23</td>
          <td>24</td>
          <td>25</td>
        </tr>
        <tr>
          <td>22</td>
          <td>26</td>
          <td>27</td>
          <td>28</td>
          <td>29</td>
          <td>30</td>
          <td>31</td>
          <td></td>
        </tr>
        </tbody>
      </table>
      <script src="script.js"></script>
  </body>
</html>