Advertisement
Guest User

html

a guest
Nov 11th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <style>
  5.     table,
  6.     tr,
  7.     td {
  8.         border: solid black;
  9.         border-collapse: collapse;
  10.     }
  11. </style>
  12.  
  13. <body>
  14.     <table>
  15.         <tr>
  16.             <td>Name</td>
  17.             <td>X</td>
  18.         </tr>
  19.         <tr>
  20.             <td>Surname</td>
  21.             <td>X</td>
  22.         </tr>
  23.     </table>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement