<!doctype html> <html lang="zh"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>iconfont</title> <!-- 若只使用Font class方式显示图标,只需引入iconfont.css即可,无需引入iconfont.js --> <!-- 重要提醒:必须设置rel属性,否则无法显示图标。 --> <link rel="stylesheet" href="./iconfont.css"> <!-- 若只使用Symbol方式显示图标,只需引入iconfont.js即可,无需引入iconfont.css --> <script src="./iconfont.js"></script> <style>.icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}</style> </head> <body> <!-- 使用Font class方式显示图标 --> <span class="iconfont icon-edit"></span> <!-- 使用Symbol方式显示图标 --> <svg class="icon" aria-hidden="true"> <use xlink:href="#icon-edit-twotone"></use> </svg> </body> </html>
Copyright © 2025 码农人生. All Rights Reserved