Հեղինակ
Վիդեոկուրսեր
Առաջարկել
Խորհուրդ եմ տալիս
Կոդ
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Էջի վերնագիր</title> <style> body { counter-reset: section; } h1 { counter-reset: subsection; } h1:before { counter-increment: section; content: "Բաժին " counter(section) ". "; } h2:before { counter-increment: subsection; content: counter(section) "." counter(subsection) " "; } </style> </head> <body> <h1>Front end</h1> <h2>HTML</h2> <h2>CSS</h2> <h2>JavaScript</h2> <h1>Back end</h1> <h2>PHP</h2> <h2>MySQL</h2> </body> </html>
Արդյունք