Disk space

Report a typo

Jack started learning to program with Unity. He read that the optimum space required to install Unity software is 85 GB but he has only about 19 GB of disk space available. He found it out when his machine reached the lowest amount of space, 21 GB, and he remembered that the higher bound of his disk is 90 GB. But Jack is unable to visualize these numbers. Help him by creating some graphical representation.

Tip: The disk's minimum space is 0 GB and the maximum space is 100 GB.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Low Disk space</title>
</head>
<body>
<label>Low Disk Space:</label>
<meter
id="low_space">
</meter>
</body>
</html>

Completed 1 of 3
Add the missing attribute in the label tag.
Using the values given in description create a representation of the disk space using proper HTML tag.
___

Create a free account to access the full topic