Open In App

HTML | data value attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML data value attribute is used to Specify the machine-readable translation of the content of the element.
Syntax: 

<data attribute> Contents... </data> 

Example:

html




<!DOCTYPE html>
<html>
 
<head>
    <title>data tag</title>
</head>
 
<body>
    <h1 style="color:green;">GeeksforGeeks</h1>
    <h2> HTML data value attribute </h2>
     
<p><b><i>GeeksforGeeks Subject List:</i></b></p>
 
    <ul>
        <li>
            <data value="009">
              Data Structure
          </data>
        </li>
        <li>
            <data value="010">
              Algorithm
          </data>
        </li>
        <li>
            <data value="011">
              HTML
          </data>
        </li>
        <li>
            <data value="019">
              Operating System
          </data>
        </li>
        <li>
            <data value="110">
              Computer Network
          </data>
        </li>
        <li>
            <data value="111">
              DBMS
          </data>
        </li>
    </ul>
</body>
 
</html>


Output:

Supported Browsers: The browsers supported by data value attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera

 



Last Updated : 15 Jul, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads