1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <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">
- <title>Document</title>
- <link rel="stylesheet" href="./iconfont/iconfont.css">
- <style>
- i.iconfont{
- font-size: 100px;
- }
- p::before{
- content: '\e64b';
- font-family: 'iconfont';
- font-size: 100px;
- }
- </style>
- </head>
- <body>
- <i class="iconfont"></i>
- <i class="iconfont"></i>
- <i class="iconfont"></i>
- <i class="iconfont icon-quxiao"></i>
- <i class="iconfont icon-shanchu"></i>
- <p>hello</p>
- </body>
- </html>
|