1. CONNECT WITH BOOTSTRAP CDN To connect the Boostrap in your Django app, there is a two way to do it.One is to use Bootstrap CDN you can get it from their official website https://www.bootstrapcdn.com get the cdn boosttrap css and js file to your html file and you will enable to use their classes by this. 2. CONNECT WITH BOOTSTRAP BY INCLUDE Another way is little bit tricky but more appropiate to use for projects specially local projects where Internet connection could be an issue. So to include bootstrap to your Django project.First you need to download the bootstrap file from their main site https://getbootstrap.com Then create a file in the directory path like "projectname/appname/static" In the picture my project name is TestProjectC and Application name is coins.so inside the coins folder I create a folder called "static".you can also change the name according to your preference. Inside the static folder paste the bootstrap ...