Тег <progress></progress>




Этот тег представляет ход выполнения задачи.



Аргумент Значение
value number
max number




index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <progress max="100" value="50"></progress>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <progress max="100" value="50"></progress>
  • </body>
  • </html>