TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> caption { font-size: 20px; font-weight: bold; color: #007BFF; margin-bottom: 10px; } </style> </head> <body> <h2>Styled Caption Example</h2> <table border="1"> <caption>Quarterly Performance</caption> <tr> <th>Quarter</th> <th>Revenue</th> </tr> <tr> <td>Q1</td> <td>$25,000</td> </tr> <tr> <td>Q2</td> <td>$30,000</td> </tr> </table> </body> </html>