Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. table, th, td {
  6. border: 1px solid #000;
  7. border-collapse: collapse;
  8. color: white;
  9. margin: 0 auto;
  10. }
  11. th, td {
  12. padding: 5px;
  13. text-align: center;
  14. width: 180px;
  15. height: 20px;
  16. }
  17. th{
  18. height: 60px;
  19. }
  20. td{
  21. width:100px;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26.  
  27. <table style="width:300px">
  28. <tr>
  29. <th colspan="3" bgcolor="blue"></th>
  30. </tr>
  31. <tr>
  32. <td bgcolor="yellow"></td>
  33. <td bgcolor="red"></td>
  34. <td bgcolor="black"></td>
  35. </tr>
  36. <tr>
  37. <td colspan="2" bgcolor="blue">
  38. <ol start="1">
  39. <li>A</li>
  40. <li>B</li>
  41. <li>C</li>
  42. </ol>
  43. </td>
  44. <td bgcolor="blue">
  45. <ol start="1">
  46. <li>A</li>
  47. <li>C</li>
  48. <li>B</li>
  49. </ol>
  50. </td>
  51. </tr>
  52. </table>
  53.  
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement