The progress bar below shows some progress of a movie download but it is unclear what this value represents (It can be cm, m, inches, or percentage). However, you know how to measure it or what the value of the movie downloading in progress is. Modify the code so that when hovering over the progress bar this value (in words) will be visible to the user.
HTML progress and meter
Tooltip
Report a typo
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>Tooltip</title>
</head>
<body>
<label for="movie-download">Check your progress here:</label>
<progress
id="movie-download"
value="64"
max="100"
></progress>
</body>
</html>
Completed 1 of 2
Add the required attribute with the correct value as mentioned in the description.
The code is valid.
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.