运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ i { font-style: italic; } </style> </head> <body> <p>An i element is displayed like this:</p> <i>Some italic text</i> <p>A customized i element (changed display):</p> <i style="font-style:normal;">Some normal text</i> </body> </html>