附加文件符号的HTML实体?

时间:2016-12-08 09:56:58

标签: html

我尝试在HTML中包含以下代码,用于附加文件符号。但它显示一个空白框。

📎  📎

是否有其他HTML附件文件符号实体?

如果没有,我们可以手动创建以支持新符号吗?

3 个答案:

答案 0 :(得分:1)

使用font' Symbola'的安装。

答案 1 :(得分:1)

我认为在简单的html页面中它起作用:

<html>

<head>

</head> 

<body> 

This is a paperclip: &#128206;

</body> 

</html> 

结果:

enter image description here

小提琴:https://jsfiddle.net/5khq3twL/

那么,为什么要创建一个图像。这是基本的实现,应该可行!

答案 2 :(得分:0)

尝试:

.icon {
  font-size: 2em;
}

.icon-file:before {
  content: '\1F4CE';
  width: 2em;
  font-size: 2em;
}
<h3>
  icon with html code <span class='icon'>&#128206;</span>
</h3>


<h3>
  icon with css class <span class='icon-file'></span>
</h3>