Changes between Version 3 and Version 4 of WikiStart
- Timestamp:
- 11/20/22 18:53:45 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v3 v4 16 16 {{{ 17 17 18 <table> 19 <tr> 20 <td> 21 Lelele 22 </td> 23 </tr> 24 <table> 18 <!DOCTYPE html> 19 <html> 20 <style> 21 table, th, td { 22 border:1px solid black; 23 } 24 </style> 25 <body> 25 26 26 {{{ 27 <h2>TD elements define table cells</h2> 28 29 <table style="width:100%"> 30 <tr> 31 <td>Emil</td> 32 <td>Tobias</td> 33 <td>Linus</td> 34 </tr> 35 </table> 36 37 </body> 38 </html> 27 39 28 40 }}} 29 30 }}}