运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ address { display: block; font-style: italic; } </style> </head> <body> <p>By default, an address element is displayed like this:</p> <address> Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br> Visit us at:<br> Example.com<br> Box 564, Disneyland<br> USA </address> <p>A customized address element (changed font-style):</p> <address style="font-style:normal;"> Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br> Visit us at:<br> Example.com<br> Box 564, Disneyland<br> USA </address> </body> </html>