sudhakarinfotech
(current)
Run Code
Live Code Editor- HTML 5 Progress
Source Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HTML5 Progress Tag</title> </head> <body> <h1>HTML 5 Progress</h1> Current Work : <progress value="80" max="100"></progress><br /> <br /> Task Completion : <progress value="45" max="100"></progress> </body> </html>
Source Code Output :
Running