全球最受欢迎的图标库与工具,提供字体图标 CSS 及资源 CDN 加速服务
| 域名 / 地址 | 加速区域 |
|---|---|
https://fontawesome.cdn.forzl.com
|
全球加速 |
https://fontawesome.ywxmz.com
|
全球加速 |
方式一:All CSS 方式引入(引入全部图标,推荐 PRO 版)
<!-- 原始 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<!-- 镜像 -->
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/all.min.css">
方式二:CDNjs 同步版(Web Font + SVG JS,推荐 Free 版)
<!-- 原始 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/brands.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/solid.min.css">
<!-- 镜像 -->
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/fontawesome.min.css">
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/brands.min.css">
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/solid.min.css">
方式三:SVG Sprite 方式(单文件,包含所有图标)
<!-- 原始 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/all.min.js"></script>
<!-- 镜像 -->
<script src="https://fontawesome.ywxmz.com/6.7.2/js/all.min.js"></script>
方式四:CDNJS 分文件引用(需要先引入主样式)
<!-- 原始 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/solid.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/brands.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/regular.min.css">
<!-- 镜像 -->
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/fontawesome.min.css">
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/solid.min.css">
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/brands.min.css">
<link rel="stylesheet" href="https://fontawesome.ywxmz.com/6.7.2/css/regular.min.css">
| 版本 | 文件类型 | 说明 |
|---|---|---|
| 6.x | CSS / JS / WebFont / SVG Sprite | 当前主版本,支持 Free / Pro / Brands |
| 5.x | CSS / JS / WebFont / SVG Sprite | 长期支持版本,兼容旧项目 |
| 4.x | CSS / WebFont | 遗留版本,仅提供安全更新 |