26

I would like to use Twitter's Bootstrap in one of my fiddles. Since jsFiddle does not offer bootstrap as one of its pre-defined libraries, I am looking for a minified url.

Is there a free minified URL for Twitter's Bootstrap?

Adam Matan
  • 128,757
  • 147
  • 397
  • 562

5 Answers5

40

have a look at jsfiddle

@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');

UPDATE

import css or js files from external resources of jsfiddle

you can use bootstrapcdn with specific version of bootstrap e.g 2.3.2 instead of 3.1.1

CSS : //netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css

JS : //netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js

working JSFiddle for v3.1.1

Gökhan Girgin
  • 1,164
  • 8
  • 12
  • 2
    This URL no longer works, and if it did, is version independent so it might not work later on. @mlctrez's Bootstrap CDN answer gives you a versioned URL so it'll work later on, and you can modify the URL to find older versions (e.g., //netdna.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css). – carpeliam Dec 30 '13 at 16:16
13

Try http://jsfiddle.net/DTcHh/241/

using external resources http://netdna.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css http://netdna.bootstrapcdn.com/bootstrap/latest/js/bootstrap.min.js

** Below Method No More Working but kept if someday something changes**

As of now select jquery 2.1.0 then you will get bootstrap as an option

Bootstrap 3.2.0 Bootstrap 2.3.2

enter image description here

Dev
  • 6,628
  • 2
  • 25
  • 34
11

For Bootstrap 3 with included CSS and JS look at this jsfiddle

CSS: //netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css
JS: //netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js

Upd: add version 3.1.1 and latest version

Quiz
  • 514
  • 1
  • 7
  • 13
7

Try this Content Delivery Network url. It has links to the minified CSS and Javascript. http://www.bootstrapcdn.com/

mlctrez
  • 71
  • 1
3

Another alternative to jsFiddle for Bootstrap is:

http://www.bootply.com/new

Primm
  • 1,438
  • 3
  • 12
  • 16