bootstrap字体图标本地如何正确引入

bootstrap字体图标本地如何正确引入_第1张图片
在bootstrap.css同父级中加入bootstrap-dist的 css文件包
然后在css文件中学下如下代码

@font-face {
	font-family:Glyphicons Halflings;
	src: url(fonts/glyphicons-halflings-regular.eot);
	src: url(fonts/glyphicons-halflings-regular.svg);
	src: url(fonts/glyphicons-halflings-regular.ttf);
	src: url(fonts/glyphicons-halflings-regular.woff);
	src: url(fonts/glyphicons-halflings-regular.woff2);
}

你可能感兴趣的:(bootstrap字体图标本地如何正确引入)