---
title: "how to use master tag in html for show the measurement of data"  
description: "HTML meter tag with examples,how to show measurement of data in html , html5, forms, input, text, anchor, image, heading, marquee, textarea, paragraph"  
author: "Anonymous User"  
published: 2018-05-24  
updated: 2019-09-07  
canonical: https://www.mindstick.com/articles/12919/how-to-use-master-tag-in-html-for-show-the-measurement-of-data  
category: "html"  
tags: ["html"]  
reading_time: 1 minute  

---

# how to use master tag in html for show the measurement of data

## [Introduction](https://www.mindstick.com/blog/359/iphone-development-introduction):

In this [article](https://yourviews.mindstick.com/view/84667/how-congress-government-misused-the-article-356) we are going to [explain](https://answers.mindstick.com/qa/43852/what-is-shadowing-in-java-explain-with-example) 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](https://www.mindstick.com/articles/12961/nonactin-based-biosensors-to-measure-ammonia) of data within a given range. It defines a scalar measurement with range.

It should be used to display [disk usage](https://www.mindstick.com/forum/161617/how-can-you-monitor-disk-usage-and-prevent-operations-when-space-is-low), user [traffic](https://yourviews.mindstick.com/view/84025/top-10-possible-reasons-why-your-site-traffic-dropped), [voting population](https://answers.mindstick.com/qa/50101/what-was-the-voting-population-in-1787) etc.

The HTML meter tag is new in [HTML5](https://www.mindstick.com/interview/1176/what-is-the-difference-between-html5-application-cache-and-regulat-html-browser-cache) 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](https://www.mindstick.com/interview/34427/explain-the-output-in-angular):

![how to use master tag in html for show the measurement of data](https://www.mindstick.com/mindstickarticle/b3e7542d-5c7c-46ac-8061-91a9230e7b0a/images/a6863858-1a3d-4933-a7b5-97dc2c695dda.png)\

I hope this article will help to you after reading.

\

---

Original Source: https://www.mindstick.com/articles/12919/how-to-use-master-tag-in-html-for-show-the-measurement-of-data

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
