1
You need to download glyphicon fonts and put them in the ../fonts
directory (path relative to your bootstrap.css) so your path structure resembles that:
your_static_dir
βββ css
β βββ bootstrap.css
βββ fonts
βββ glyphicons-halflings-regular.eot
βββ glyphicons-halflings-regular.svg
βββ glyphicons-halflings-regular.ttf
βββ glyphicons-halflings-regular.woff
0
look at path in βbootstrap.cssβ line 266
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
- static
- css
- bootstrap.css
- bootstrap.css.map
- β¦
- fonts
- glyphicons-β¦.eot
- glyphicons-β¦.svg
- glyphicons-β¦.ttf
- glyphicons-β¦.woff
- glyphicons-β¦.woff2
- js
- β¦
- css
Source:stackexchange.com