如何将自定义引导链接到index.html文件?

时间:2018-02-02 07:19:40

标签: html css twitter-bootstrap-3 customization

我是bootstrap的新手(刚开始学习),我最近在http://getbootstrap.com/docs/3.3/customize/

上自定义了我的bootstrap文件

我编译和下载,然后我发现很难将它与我的index.html文件链接。引导程序文件的源代码位于本地驱动器上,在我的代码中,它看起来像这样

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="desc">
    <meta name="keywords" content="content">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" >
    <link rel="stylesheet" href="css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">    

    <title>TITLE</title>
  </head>
  <body>    

    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->     
    <script src="js/bootstrap.min.js"/> 
  </body>
</html>

请帮助:)

1 个答案:

答案 0 :(得分:0)

如果您是Bootstrap的新手,首先应该使用最新版本(即Bootstrap 4.0)。

启动项目的一个好方法是使用CDN,Bootstrap文件托管在远程服务器中,因此您不必在本地管理Bootstrap文件。 https://getbootstrap.com/docs/4.0/getting-started/download/#bootstrapcdn

检查浏览器中的控制台,确保所有内容都已正确加载。

要包含您的自定义CSS,只需像使用任何html页面一样放入您的CSS。

<head>
    <link rel="stylesheet" type="text/css" href="custom_main.css">
</head>