Home>Article>Web Front-end> How to import bootstrap files
Bootstrap is a set of open source front-end frameworks for website and web application development, including HTML, CSS and JavaScript frameworks, providing typography, forms, buttons, navigation and other Various components and Javascript extensions designed to make the development of dynamic web pages and web applications easier.
How to introduce bootstrap files
There are generally two ways to introduce Bootstrap:
Refer to the online Bootstrap style,
Download Bootstrap locally for reference.
Online citation
The basic template is as follows:
Bootstrap引入
Advantages: No need to install Bootstrap locally, and no need to consider the path problem when quoting
Disadvantages: Once the online style is down, it will affect the rendering of the entire page style
Local reference
Download Bootstrap locally.
Directly access the 3 URLs in the above code to get the code
Go to Bootstrap’s official website http://v3.bootcss.com/ and JQuery
’s official website http: //jquery.com/ Download the corresponding files
Place the required files under the project for easy reference
The directory structure of bootstrap is as follows:
bootstrap/ ├── css/ │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ └── bootstrap-theme.min.css.map ├── js/ │ ├── bootstrap.js │ └── bootstrap.min.js └── fonts/ ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2
The most commonly used ones are css/bootstrap.min.css, js/bootstrap.min.js
jquery.min.js can be downloaded from the JQuery official website
Finally, just introduce it in the corresponding file.
Advantages: Ensure that the page style can still be displayed normally even if the network condition is poor
Disadvantages: It needs to be installed or downloaded in advance, and path issues must be considered when referencing.
Related recommendations: "bootstrap tutorial"
The above is the detailed content of How to import bootstrap files. For more information, please follow other related articles on the PHP Chinese website!