Advertisement
DeMorgan

Tatarky

Apr 15th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta charset="utf-8">
  5.   <title>Tarky</title>
  6.   <style type="text/javacript">
  7.     table.tabulka, table.tabulka .th, table.tabulka .td {
  8.         border: 2px solid black;
  9.         border-collapse: collapse;
  10.     }
  11.  
  12.     table.tabulka .th, table.tabulka .td {
  13.         padding: 25px;
  14.     }
  15.   </style>
  16.   </head>
  17. <body>
  18.   <h1>Tatarkyho tabulka</h1>
  19.   <table class="tabulka">
  20.   <thead>
  21.     <tr>
  22.       <th></th>
  23.       <th></th>
  24.       <!-- collspan zlucenie stlpcov rowspan slucenie riadokov -->
  25.       <th rowspan="2" colspan="2"><img src="http://weknowyourdreamz.com/images/smile/smile-09.jpg" alt="Smiley face" height="42" width="42"></th>
  26.     </tr>
  27.   </thead>
  28.   <tbody>
  29.     <tr>
  30.       <td></td>
  31.       <td></td>
  32.     </tr>
  33.     <tr>
  34.       <td rowspan="2"></td>
  35.       <td></td>
  36.       <td></td>
  37.       <td></td>
  38.     </tr>
  39.     <tr>
  40.       <td></td>
  41.       <td></td>
  42.       <td></td>
  43.     </tr>
  44.   </tbody>
  45.   </table>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement