How to use Bootstrap structure in NetBeans?

I recently downloaded the Bootstrap framework from my official site. I am currently creating a web application in NetBeans, and for the design I want to use this boot infrastructure that I downloaded.

The downloaded Bootstrap package contains many files, but from them I manually added type files 'jquery.js', 'bootstrap.min.css'etc.

Now I want to use the glyphics from Bootstrap, but I have no idea how to integrate the glyphics file into NetBeans. So, is there a way I can integrate the entire Bootstrap package loaded into a NetBeans project?

+4
source share
2 answers

bootstrap.min.css  

CSS CDN

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">

,

<span class="glyphicon glyphicon-heart"></span>

,

+6

All Articles