Bootstrap 列不是并排的

Bootstrap columns aren't side by side

我正在尝试学习 Bootstrap 网格,我认为我正确地使用了网格,但我的代码没有产生我在 Chrome 中预期的结果,尽管它看起来是正确的代码笔。我的代码:

<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
        <title>Testando Grids</title>

        <!-- Bootstrap -->
        <link rel="stylesheet" href="css/bootstrap.min.css">
        <link rel="stylesheet" href="css/bootstrap-responsive.min.css">

        <!-- CSS -->
        <style type="text/css">
            .red {
                background-color: red;
            }
            .blue {
                background-color: blue;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="row">
                <div class="red col-md-8">8</div>
                <div class="blue col-md-4">4</div>
            </div>
        </div>

        <script src="js/jquery-3.2.1.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
    </body>
</html>

我期望的(以及我在 Codepen 中得到的):

我有什么:

你的代码没问题,但是你给了一个错误的bootstrap.min.css路径,检查你的控制台,这是你更新的代码,查看全页

  .red {
                background-color: red;
            }
            .blue {
                background-color: blue;
            }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"/>

     
   
        <div class="container">
            <!-- Stack the columns on mobile by making one full-width and the other half-width -->
            <div class="row">
                <div class="red col-md-8">8</div>
                <div class="blue col-md-4">4</div>
            </div>
        </div>