-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8738854
commit 932d044
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,10 @@ import 'remixicon/fonts/remixicon.css' | |
Copy the following code and add it to the <head> tag of your html document. | ||
|
||
```html | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" | ||
rel="stylesheet" | ||
/> | ||
``` | ||
|
||
> The `@3.7.0` in the CDN link can be changed to any history version we've published. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,10 @@ import 'remixicon/fonts/remixicon.css' | |
如果不打算通过安装的方式使用,可以直接复制下面这行代码到您 HTML 文档的 <head> 标签中,这样就完成了 CDN 方式的图标引入,简单快捷,推荐方式。 | ||
|
||
```html | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" | ||
rel="stylesheet" | ||
/> | ||
``` | ||
|
||
> 上面 CDN 链接中的 `@3.7.0` 可以更改为任何我们曾经发布过的历史版本号。 | ||
|