html-tips-tricks/meter/index.html

29 lines
1.0 KiB
HTML
Raw Normal View History

2020-08-13 15:09:32 +02:00
<!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'>
2020-08-14 05:44:20 +02:00
<link href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet">
2020-08-13 15:09:32 +02:00
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
</head>
<body>
<div class="demo">
2020-08-14 07:00:23 +02:00
<a href="../index.html" class="home">
<img src="../home.svg" alt="home" />
</a>
2020-08-13 15:09:32 +02:00
<h2> Meter </h2>
2020-08-14 07:30:46 +02:00
<label for="home">/home/atapas</label>
<meter id="home" value="4" min="0" max="10">2 out of 10</meter><br>
2020-08-13 15:09:32 +02:00
2020-08-14 07:30:46 +02:00
<label for="root">/root</label>
<meter id="root" value="0.6">60%</meter><br>
<label for="file">Downloading progress:</label>
<progress id="file" value="32" max="100"> 32% </progress>
2020-08-13 15:09:32 +02:00
</div>
</body>
</html>