Advertisement
Guest User

HTML table example

a guest
Dec 9th, 2020
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <style>
  2. table {border-radius: 5px 20px 20px 5px; border: 5px solid #819aea;}
  3. th {border-radius: 5px 20px 0px 0px; border: 2px solid #819aea; background: #aed2e9; text-align: left; color: #767374; font-family:Arial; padding: 5px;}
  4. td {border: 2px solid #819aea; background: #06bdf9; text-align: center; color: #767374; font-family:Arial; padding: 5px;}
  5. </style>
  6.  
  7. <table>
  8. <thead>
  9. <tr>
  10. <th colspan="2">
  11. <p>Insert Title For Table Topic Here</p>
  12. </th>
  13. </tr>
  14. <tbody>
  15. <tr>
  16. <td style="border-radius: 0px 0px 0px 5px; text-align: left;">Insert Item Name Here/td>
  17. <td style="border-radius: 0px 0px 20px 0px;">Insert Item Description Here</td>
  18. </tr>
  19. <table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement