files/en-us/web/html/reference/elements/data/index.md
The <data> HTML element links a given piece of content with a machine-readable translation. If the content is time- or date-related, the {{HTMLElement("time")}} element must be used.
{{InteractiveExample("HTML Demo: <data>", "tabbed-shorter")}}
<p>New Products:</p>
<ul>
<li><data value="398">Mini Ketchup</data></li>
<li><data value="399">Jumbo Ketchup</data></li>
<li><data value="400">Mega Jumbo Ketchup</data></li>
</ul>
data:hover::after {
content: " (ID " attr(value) ")";
font-size: 0.7em;
}
This element's attributes include the global attributes.
value
The following example displays product names but also associates each name with a product number.
<p>New Products</p>
<ul>
<li><data value="398">Mini Ketchup</data></li>
<li><data value="399">Jumbo Ketchup</data></li>
<li><data value="400">Mega Jumbo Ketchup</data></li>
</ul>
{{EmbedLiveSample('Examples')}}
{{Specifications}}
{{Compat}}