icon图标
程序员文章站
2022-05-01 22:17:37
...
https://www.iconfont.cn/
<!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>图标</title>
<!-- 第一步,引入图标的css -->
<link rel="stylesheet" href="./css/iconfont.css" />
<link rel="stylesheet" href="./css1/iconfont.css" />
</head>
<!-- 第二步,引用图标class -->
<body>
<span class="iconfont icon-attachment"></span>
<span class="iconfont icon-camera"></span>
<span class="iconfont icon-a-03-01 like"></span>
<span class="iconfont icon-a-21-01 like1"></span>
<style>
.iconfont.icon-attachment {
font-size: 80px;
color: rgb(71, 114, 255);
}
.iconfont.icon-camera {
font-size: 70px;
color: rgb(18, 223, 46);
}
.like {
font-size: 60px;
color: green;
}
.like1 {
font-size: 90px;
color: rgb(058, 237, 160);
}
/* .iconfont.icon-camera {
font-size: 80px;
color: tomato;
} */
</style>
</body>
</html>