April 2018
Beginner
226 pages
4h 47m
English
Bootstrap provides an easy way to set up its libraries for your application. Like any other third-party library, we can provide a content delivery network (CDN) link directly or can download the file.
Bootstrap also contains JavaScript links for user interface interactions and events, but in our application we only need the CSS.
So here is the link that needs to be placed inside the head tag. This can be used as follows:
<link rel="stylesheet" type="text/css" href=" https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
We download the CSS file from the preceding link for our application, so that readers can refer to it even if they are offline or without an internet connection.
Once downloaded ...
Read now
Unlock full access