• 吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-cog


    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
        </head>
    
        <body>
            <div class="container">
                <h2>Cog Glyph</h2>
                <p>Cog icon: <span class="glyphicon glyphicon-cog"></span></p>    
                <p>Cog icon as a link:
                    <a href="#">
                        <span class="glyphicon glyphicon-cog"></span>
                    </a>
                </p>
                <p>Cog icon on a button:
                    <button type="button" class="btn btn-default btn-sm">
                        <span class="glyphicon glyphicon-cog"></span> Cog
                    </button>
                </p>
                <p>Cog icon on a styled link button:
                    <a href="#" class="btn btn-info btn-lg">
                        <span class="glyphicon glyphicon-cog"></span> Cog
                    </a>
                </p> 
            </div>
    
            <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
            <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
        </body>
    
    </html>

  • 相关阅读:
    php环境下所有的配置文件以及作用
    获取登陆用户的ip
    curl模拟post和get请求
    linux 下安装php curl扩展
    php常用面试知识点
    git使用步骤
    laravel框架基础知识点
    ci框架基础知识点
    ajax
    Mysql 中需不需要commit
  • 原文地址:https://www.cnblogs.com/tszr/p/10893331.html
Copyright © 2020-2023  润新知