Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Kartkowka 2TI - HTML tabela</title>
  6. <meta name="author" content="Jakub Grzymisławski 2Ti B">
  7. <style>
  8. table{
  9. font-size: 30px;
  10. border: 2px solid brown;
  11. }
  12. th{
  13. border: 1px solid yellow;
  14. background-color: orange;
  15. padding: 5px;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <table width="200px" height="180px">
  21. <tr>
  22. <th>1</th>
  23. <th>2</th>
  24. <th>3</th>
  25. <th>4</th>
  26. </tr>
  27. <tr>
  28. <th colspan="2">5,6</th>
  29. <th rowspan="2">7,11</th>
  30. <th>8</th>
  31. </tr>
  32. <tr>
  33. <th>9</th>
  34. <th>10</th>
  35. <th>12</th>
  36. </tr>
  37. </table>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement