Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Progress and Meter</title>
5
</head>
6
<body>
7
8
<h2>System Dashboard</h2>
9
<p>File Download Progress:</p>
10
<progress value="75" max="100">75%</progress>
11
12
<p>Disk Storage Used:</p>
13
<meter value="0.6" min="0" max="1" low="0.3" high="0.8" optimum="0.2">60%</meter>
14
15
</body>
16
</html>
