TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> caption { caption-side: bottom; font-style: italic; } </style> </head> <body> <h2>Bottom Caption Example</h2> <table border="1"> <caption>Data provided by the finance department</caption> <tr> <th>Month</th> <th>Profit</th> </tr> <tr> <td>March</td> <td>$15,000</td> </tr> <tr> <td>April</td> <td>$18,000</td> </tr> </table> </body> </html>