1. 程式人生 > >401day(字型圖示使用)

401day(字型圖示使用)

《2018年11月9日》【連續401天】

標題:字型圖示使用;
內容:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
	@font-face { /*宣告字型 引用字型*/
		font-family: "icomoon";
		src: url("icomoon/fonts/icomoo.eot?7kkyc2");
		src: url("icomoon/fonts/icomoon.eot?7kkyc2#iefix") format("embedded-opentype"),
		url("icomoon/fonts/icomoon.ttf?7kkyc2")format("truetype"),
		url(icomoon/fonts/icomoon.woff?7kkyc2)format("woff"),
		url(icomoon/fonts/icomoon.svg?7kkyc2#icomoon)format('svg');
		font-style: normal; /*傾斜字型正常*/
	}
	span {
		font-family: "icomoon";
		font-size: 100px;
		color: red;
	}
	</style>
</head>
<body>
	<span></span>
</body>
</html>

複製小方格進入span:

效果: