准备写个麦当劳的网页,结果前期下载麦当劳网页的iconfont,在typetool3不能正常打开
下载
转码
不能使用
直接保存iconfont.css就行了
<html>
<head>
<link rel="stylesheet" href="iconfont.css">
</head>
<body>
<i class="iconfont"></i>
</body>
</html>
跟上个说的一样直接保存iconfont.css , 但不一定要那样用, 用 class 也可以 , 样式里有类名 , 就是要找一下;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="iconfont.css">
</head>
<body>
<i class="iconfont"></i>
<br>
<i class="iconfont icon-map-logo"></i>
<i class="iconfont icon-011"></i>
<i class="iconfont icon-08"></i>
<i class="iconfont icon-061"></i>
<i class="iconfont icon-021"></i>
<i class="iconfont icon-031"></i>
<i class="iconfont icon-041"></i>
<i class="iconfont icon-051"></i>
</body>
</html>