| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <link rel="stylesheet" href="https://at.alicdn.com/t/c/font_5209207_75gnoupm8ng.css">
- <style>
- /* @font-face 定义字体 引入字体库 */
- /* @font-face { */
- /* 字体名称 */
- /* font-family: "iconfont"; */
- /* Project id 5209207 */
- /* 字体库地址 */
- /* src: url('https://at.alicdn.com/t/c/font_5209207_bdvu781tnbt.woff2?t=1783925904214') format('woff2'),
- url('https://at.alicdn.com/t/c/font_5209207_bdvu781tnbt.woff?t=1783925904214') format('woff'),
- url('https://at.alicdn.com/t/c/font_5209207_bdvu781tnbt.ttf?t=1783925904214') format('truetype'); */
- /* } */
- /* .iconfont { */
- /* 字体名称 */
- /* font-family: "iconfont" !important; */
- /* font-size: 16px; */
- /* font-style 字体样式 normal 正常 italic 斜体 */
- /* font-style: normal; */
- /* 字体平滑 */
- /* -webkit-(webkit浏览器 比如chrome) -moz-(firefox浏览器) 用作与适配不同的浏览器 */
- /* -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale; */
- /* } */
- /* .icon-zhifubao:before {
- content: "\e60f";
- }
- .icon-qq:before {
- content: "\e68d";
- } */
- .icon-qq{
- color: red;
- font-size: 100px;
- }
- </style>
- </head>
- <body>
- <i class="iconfont icon-qq"></i>
- <i class="iconfont icon-zhifubao"></i>
- <i class="iconfont icon-weibo"></i>
- </body>
- </html>
|