TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <style> table { width: 100%; } </style> <body> <h2>Multi-Line Caption Example</h2> <table border="1"> <caption> Annual Report<br>Revenue and profit analysis for 2024 </caption> <tr> <th>Year</th> <th>Revenue</th> </tr> <tr> <td>2023</td> <td>$150,000</td> </tr> <tr> <td>2024</td> <td>$200,000</td> </tr> </table> </body> </html>