如何在sublime2中包含bootstrap?

时间:2017-03-29 09:20:29

标签: html twitter-bootstrap-3 sublimetext2

您好我在sublime text 2

中编写以下代码
<!DOCTYPE html>
<html lang="en">

<head>
    <title>Welcome To SpendWiz</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="SpendWiz/js/bootstrap3.3.7/css/bootstrap.min.css">
    <script src="SpendWiz/js/bootstrap3.3.7/js/bootstrap.min.js">
    </script>
    <style>
    .jumbotron {
      background-color: #00bcd4;
      color: #fff;
    }
  </style>
</head>

<body>  
    <div class="jumbotron text-center">
        <h1>Welcome To SpendWiz</h1>
    </div>
</body>

</html>

我已经下载了bootstrap-3.3.7-dlist并将其保存在文件夹SpendWiz / js /中。我在Spendwiz文件夹中编写了上面的代码,当我尝试运行它时,它显示了内容,但它没有添加bootstrap。你能帮我吗?提前谢谢。

1 个答案:

答案 0 :(得分:1)

只需删除SpendWiz /,因为您说这些文件已经在该文件夹中。无需指定。