mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 16:58:27 +01:00
29 lines
No EOL
1 KiB
HTML
29 lines
No EOL
1 KiB
HTML
<!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 href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet">
|
|
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="demo">
|
|
<a href="../index.html" class="home">
|
|
<img src="../home.svg" alt="home" />
|
|
</a>
|
|
<h2> Meter </h2>
|
|
<label for="home">/home/atapas</label>
|
|
<meter id="home" value="4" min="0" max="10">2 out of 10</meter><br>
|
|
|
|
<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>
|
|
</div>
|
|
</body>
|
|
</html> |