01.阿里的字体库.html 743 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  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. <title>Document</title>
  8. <link rel="stylesheet" href="./iconfont/iconfont.css">
  9. <style>
  10. i.iconfont{
  11. font-size: 100px;
  12. }
  13. p::before{
  14. content: '\e64b';
  15. font-family: 'iconfont';
  16. font-size: 100px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <i class="iconfont">&#xe63a;</i>
  22. <i class="iconfont">&#xe721;</i>
  23. <i class="iconfont">&#xe629;</i>
  24. <i class="iconfont icon-quxiao"></i>
  25. <i class="iconfont icon-shanchu"></i>
  26. <p>hello</p>
  27. </body>
  28. </html>