Open In App
Related Articles

HTML | <table> summary Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <table> summary Attribute is used to specify the summary of the table content.

Syntax:

<table summary="text">

Attribute Values:

  • text: It holds the summary of the table content.

Note: The <table> summary Attribute is not supported by HTML 5.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML table summary Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML table summary Attribute</h2>
  
    <table border="1" 
           summary="It describes the author details.">
        <tr>
            <th>NAME</th>
            <th>AGE</th>
            <th>BRANCH</th>
        </tr>
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
    </table>
</body>
  
</html>


Output:

Supported Browsers: The browser supported by HTML <table> summary Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 29 May, 2019
Like Article
Save Article
Similar Reads
Related Tutorials