Advertisement
danisfaisal

table1.html

Jul 18th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>table</title>
  5. </head>
  6. <body>
  7.     <table>
  8.         <tr>
  9.             <td>baris 1 / kolom 1</td>
  10.             <td>baris 1 / kolom 2</td>
  11.             <td>baris 1 / kolom 3</td>
  12.         </tr>
  13.         <tr>
  14.             <td>baris 2 / kolom 1</td>
  15.             <td>baris 2 / kolom 2</td>
  16.             <td>baris 2 / kolom 3</td>
  17.         </tr>
  18.         <tr>
  19.             <td>baris 3/ kolom 1</td>
  20.             <td>baris 3/ kolom 2</td>
  21.             <td>baris 3/ kolom 3</td>
  22.         </tr>
  23.         <tr>
  24.             <td>baris 4/ kolom 1</td>
  25.             <td>baris 4/ kolom 2</td>
  26.             <td>baris 4/ kolom 3</td>
  27.         </tr>
  28.     </table>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement