Bootsrap字体图标使用
Posted 司会铭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bootsrap字体图标使用相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! --> <title>Bootstrap</title> <!-- 1.加载Bootstrap层叠样式表 --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn\'t work if you view the page via file:// --> <!--[if lt IE 9]> <script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <!-- 图标名称就是class属性值,放在span标签内 --> <span class="glyphicon glyphicon-glass"></span> <span class="glyphicon glyphicon-euro"></span> <!-- 加载JQuery和bootstrap核心js --> <script src="../JQ/jquery-1.12.4.min.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
以上是关于Bootsrap字体图标使用的主要内容,如果未能解决你的问题,请参考以下文章