运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { /* Set "section" to 9 */ counter-set: section 9; } h1 { /* Set "subsection" to 0 */ counter-set: subsection 0; } h1::before { counter-increment: section; content: "Section " counter(section) ": "; } h2::before { counter-increment: subsection; content: counter(section) "." counter(subsection) " "; } </style> </head> <body> <h1>HTML and CSS</h1> <h2>HTML Tutorial</h2> <h2>CSS Tutorial</h2> <h2>Bootstrap Tutorial</h2> <hr> <h1>JavaScript</h1> <h2>JavaScript Tutorial</h2> <h2>jQuery Tutorial</h2> <h2>JSON Tutorial</h2> <hr> <h1>Server Side</h1> <h2>SQL Tutorial</h2> <h2>PHP Tutorial</h2> </body> </html>