Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> h2::before { counter-increment: section; content: "Book " counter(section) ". "; } </style> </head> <body> <p>Нажмите на кнопку "Try it", чтобы установить свойство counter-reset:</p> <button onclick="myFunction()">Try it</button> <h2>Учебник HTML</h2> <h2>Учебник JavaScript </h2> <h2>Учебник CSS </h2> <script> function myFunction() { document.body.style.counterReset = "section"; } </script> </body> </html>