The HTML <data> Tag is employed to supply a code version of its own contents. It displays the info in a special format. it’s helpful within the case wherever your knowledge has to be during a sure format as a result of it should be processed by a script, however, this won’t be the format that you need your users to check.

Let’s take a situation to grasp it well:

Suppose you have got to represent some numbers to your users with letters (i.e. 1, 2, 3, and then on) however you have got a script that kinds the numbers in ascending or descendent orders. therefore your script wants numbers during a format like 1, 2, 3… etc.

The <data> Tag is here to resolve your problem.

For the users: Write inside the <data>…. </data> Tag.

For the script: Use worth attribute.

Attribute

value=””.

HTML Data Tag

Example:-

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>
		HTML data Tag
	</title>
</head>
<body>

	<h1>HTML Data Tag Example</h1>
<ul>  
<li><data value="01">HTML tutorial</data></li>  
<li><data value="02">Java Tutorial</data></li>  
<li><data value="03">C tutorial</data></li>  
<li><data value="04">WordPress tutorial</data></li>  
<li><data value="05">Bootstrap tutorial</data></li>  
<li><data value="05">JavaScript tutorial</data></li>  
</ul>  
</body>
</html>

Output:-


Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *