articles

Home / DeveloperSection / Articles / how to use master tag in html for show the measurement of data

how to use master tag in html for show the measurement of data

Anonymous User 1883 24-May-2018

Introduction:

In this article we are going to explain what is master tag in html or how to use master tag in html or how to show measurement of data in html with example.

Description:

Html meter tag is used to show the measure of data within a given range. It defines a scalar measurement with range.

It should be used to display disk usage, user traffic, voting population etc.

The HTML meter tag is new in HTML5 so you must use new browsers.

Let’s see an example of master tag:

 <!DOCTYPE html>
<html>
<head>
 <title>html tutorials</title>
</head>
<body>
    <p>Display a user traffic:</p>
    <meter value="50" min="1" max="100">50 out of 100</meter><br>
    <meter value="0.8">80%</meter>
    <style>
        meter {
            width: 300px;
            height: 30px;
        }  
    </style> 
</body>
</html>  

Output:

how to use master tag in html for show the measurement of data

 I hope this article will help to you after reading.



Updated 07-Sep-2019
I am a content writter !

Leave Comment

Comments

Liked By