运行 ❯
获取您
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ a:link, a:visited { color: /* browser's internal value */; text-decoration: underline; cursor: auto; } a:link:active, a:visited:active { color: /* browser's internal value */; } </style> </head> <body> <p>By default, an a element is displayed like this:</p> <a href="https://w3schools.org.cn">Visit W3Schools.com!</a> <p>A customized a element (changed text-decoration and color):</p> <a style="text-decoration:none;color:red;" href="https://w3schools.org.cn">Visit W3Schools.com!</a> </body> </html>