<!DOCTYPE html> <html> <head> <title>Example of HTML caption Tag</title> <style type="text/css"> table, td, th { border: 1px solid gray; } </style> </head> <body> <table> <caption>User Details</caption> <thead> <tr> <th>No.</th> <th>Name</th> <th>Email</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Alson</td> <td>Alson@mail.com</td> </tr> <tr> <td>2</td> <td>Conner</td> <td>Conner@mail.com</td> </tr> <tr> <td>3</td> <td>John Doe</td> <td>John@mail.com</td> </tr> </tbody> </table> </body> </html>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter