HTML 5 <meter> tag
The <meter> tag is used for specifying a scalar
measurement within a known range, or a fractional value. The <meter> element is
only used to represent a range. Note that don't use this element for
representing a single number unless there is a known maximum number.
Example
<!DOCTYPE
HTML>
<html>
<body>
<h3>Different
ways of representing 25%</h3>
<meter
min="0" max="100">25%</meter><br
/>
<meter>1/4</meter><br
/>
<meter>200
out of 800</meter><br
/>
<meter>max:
100; current: 25</meter>
</body>
</html>
Output

HTML 5 <nav> tag
The <nav> tag is used for indicating a
navigational section of the HTML document. The navigational links enable the
user to navigate the site. These links should be placed inside the
<nav>
tag.
Example
<!DOCTYPE
HTML>
<html>
<body>
<nav>
<a
href="default.asp">Home</a>
<a
href="tag_meter.asp">Previous</a>
<a
href="tag_noscript.asp">Next</a
</nav>
</body>
</html>
Output

Note: In the above example, you
have to create a web application in which with the help of HTML giving reference
to the 3 navigation links Home, Previous and Next. When you click on the link
Home, the home page is display and so on. The above code only describes that how
can you give a reference of ASP page in HTML.