Blogger Information
Blog 19
fans 0
comment 0
visits 5771
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
字体图标的引入方式Unicode和font class与显示
vbokok
Original
351 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <link rel="stylesheet" href="css/0208.css" />
  8. <title>字体图标</title>
  9. </head>
  10. <body>
  11. <div class="iconfont">
  12. <span class="icon-shoucang2 active"></span>
  13. </div>
  14. </body>
  15. </html>
  16. CSS:
  17. @import url(//at.alicdn.com/t/c/font_3890806_is94ruj2l7.css);
  18. .active {
  19. font-size: 3em;
  20. color: blueviolet;
  21. }

[========]

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/0208.css" />
<title>字体图标</title>
</head>
<body>
<div class="my-font">
<span></span>
</div>

  1. </body>
  2. </html>
  3. CSS:
  4. /* CDN 服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
  5. @font-face {
  6. font-family: 'iconfont'; /* Project id 3890806 */
  7. src: url('//at.alicdn.com/t/c/font_3890806_is94ruj2l7.woff2?t=1676098400453') format('woff2'),
  8. url('//at.alicdn.com/t/c/font_3890806_is94ruj2l7.woff?t=1676098400453') format('woff'),
  9. url('//at.alicdn.com/t/c/font_3890806_is94ruj2l7.ttf?t=1676098400453') format('truetype');
  10. }
  11. .my-font {
  12. font-family: iconfont;
  13. color: red;
  14. font-size: 3em;
  15. }

[========]

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post