运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .dot { height: 25px; width: 25px; background-color: #bbb; border-radius: 50%; display: inline-block; } </style> </head> <body> <div style="text-align:center"> <h1>Round Dots / Circles</h1> <span class="dot"></span> <span class="dot"></span> <span class="dot"></span> <span class="dot"></span> </div> </body> </html>