Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.40 KB | None | 0 0
  1. <!--
  2. 1.Za pomocą kodu wstaw na strone taka tabelkę (patrz 0iX.jpg)
  3. -->
  4.  
  5. <!--
  6. 2.Za pomocą kodu wstaw na strone taka tabelkę (patrz kalendarz.jpg)
  7. -->
  8.  
  9.  
  10.  
  11. <!doctype html>
  12. <html lang="pl-PL">
  13.     <head>
  14.         <meta charset="utf-8">
  15.         <title>Tabele ćwiczenie 1</title>
  16.         <meta http-equiv="x-ua-compatible" content="ie=edge">
  17.         <meta name="viewport" content="widtd=device-widtd, initial-scale=1, shrink-to-fit=no">
  18.         <link rel="stylesheet" href="css/style.css">
  19.         <style type="text/css">
  20.             #xo {
  21.                 border-collapse: collapse;
  22.                 height: 400px;
  23.                 width: 400px;
  24.                
  25.             }
  26.             #xo tr, #xo th {
  27.                 border: 1px solid #bbb;
  28.             }
  29.             #cal {
  30.                 border-collapse: collapse;
  31.                 height: 300px;
  32.                 width: 400px;
  33.             }
  34.             #cal tr, #cal #th, #cal td {
  35.                 padding: 10px;
  36.                 text-align: center;
  37.                 border: 1px solid #ccc;
  38.             }
  39.             #sunday {
  40.                 color: #fff;
  41.                 background-color: #FF6347;
  42.             }
  43.         </style>
  44.     </head>
  45.     <body>
  46.         <!-- tutaj powinien znaleźć się kod tabeli -->
  47.         <table id="xo">
  48.             <tr>
  49.                 <th>X</th>
  50.                 <th>O</th>
  51.                 <th>O</th>
  52.             </tr>
  53.             <tr>
  54.                 <th>O</th>
  55.                 <th>X</th>
  56.                 <th>X</th>
  57.             </tr>
  58.             <tr>
  59.                 <th>O</th>
  60.                 <th>O</th>
  61.                 <th>X</th>
  62.             </tr>
  63.         </table>
  64.         <br>
  65.         <table id="cal">
  66.             <tr>
  67.                 <th colspan="7">Styczeń</th>
  68.             </tr>
  69.             <tr>
  70.                 <td><strong>Pon</strong></td>
  71.                 <td><strong>Wto</strong></td>
  72.                 <td><strong>Śro</strong></td>
  73.                 <td><strong>Czw</strong></td>
  74.                 <td><strong>Pią</strong></td>
  75.                 <td><strong>Sob</strong></td>
  76.                 <td><strong>Nie</strong></td>
  77.             </tr>
  78.             <tr>
  79.                 <td>1</td>
  80.                 <td>2</td>
  81.                 <td>3</td>
  82.                 <td>4</td>
  83.                 <td>5</td>
  84.                 <td>6</td>
  85.                 <td id="sunday">7</td>
  86.             </tr>
  87.             <tr>
  88.                 <td>8</td>
  89.                 <td>9</td>
  90.                 <td>10</td>
  91.                 <td>11</td>
  92.                 <td>12</td>
  93.                 <td>13</td>
  94.                 <td id="sunday">14</td>
  95.             </tr>
  96.             <tr>
  97.                 <td>15</td>
  98.                 <td>16</td>
  99.                 <td>17</td>
  100.                 <td>18</td>
  101.                 <td>19</td>
  102.                 <td>20</td>
  103.                 <td id="sunday">21</td>
  104.             </tr>
  105.             <tr>
  106.                 <td>22</td>
  107.                 <td>23</td>
  108.                 <td>24</td>
  109.                 <td>25</td>
  110.                 <td>26</td>
  111.                 <td>27</td>
  112.                 <td id="sunday">28</td>
  113.             </tr>
  114.             <tr>
  115.                 <td>29</td>
  116.                 <td>30</td>
  117.                 <td>31</td>
  118.                 <td></td>
  119.                 <td></td>
  120.                 <td></td>
  121.                 <td id="sunday"></td>
  122.             </tr>
  123.         </table>
  124.     </body>
  125. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement