meter is done

This commit is contained in:
Tapas Adhikary 2020-08-13 18:39:32 +05:30
parent 342a47dce5
commit 7cd5eed3af
2 changed files with 26 additions and 0 deletions

View File

@ -48,6 +48,10 @@
<a href='./map/index.html'>
Map</a> - Image map with coordinates
</li>
<li>
<a href='./meter/index.html'>
Meter</a> - Display a gauge
</li>
</ul>
</div>
</body>

View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>HTML Tips and Tricks - Meter</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
</head>
<body>
<div class="demo">
<h2> Meter </h2>
<label for="disk_c">Disk usage C:</label>
<meter id="disk_c" value="8" min="0" max="10">2 out of 10</meter><br>
<label for="disk_d">Disk usage D:</label>
<meter id="disk_d" value="0.6">60%</meter>
</div>
</body>
</html>