BootStrap Glyphicon显示问题

ARr*_*r0w 5 html twitter-bootstrap glyphicons

我尝试了多种方法.Glyphicon不加载.我错过了什么或我在哪里弄错了?我现在很傻了

回答了这个问题: 答案

仍然没有出现图标.

我的浏览器控制台没有错误.只有Xhr请求返回状态为200.

HTML:

<!DOCTYPE html>

<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>@ViewBag.Title</title>
    <link href="~/AppContent/css/bootstrap.min.css" rel="stylesheet" />
    <link href="~/AppContent/css/Custom.css" rel="stylesheet" />
    <link rel="icon" href="data:;base64,iVBORw0KGgo=">

</head>
<body>
    <div class="container-fluid">

        @*Header*@
        <div>
            <div class="row" style="background-color:blanchedalmond;">
                <div class="col-md-4" style="border:2px solid black;">
                    <h4>APPLICATION</h4>
                </div>
                <div class="col-md offset-md-7" style="border:2px solid black;">
                  <span class="glyphicon glyphicon-arrow-right">|<a href="#">Login</a></span>
                </div>
            </div>
        </div>

        @*Left panel*@
        <div>

        </div>

        @*Body*@
        <div>
            @RenderBody()
        </div>

        @*Right Panel*@
        <div>

      </div>
    </div>
    <script src="~/AppContent/js/jquery-3.2.1.min.js"></script>
    <script src="~/AppContent/js/tether.min.js"></script>
    <script src="~/AppContent/js/bootstrap.min.js"></script>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

这是我的文件夹结构:

在此输入图像描述

我将非常感谢帮助,谢谢:) Ps:我在初始级别的bootstrap.

sev*_*ven 3

文件夹结构:

在此输入图像描述

在索引页中附加外部文件:

在此输入图像描述

检查您的文件夹结构。按照index.html 文件中显示的附加CSS、脚本的结构进行操作。

我附上了屏幕截图。

删除“~”符号和您的根文件夹名称,即AppContent。