How to add external fonts on rails application with twitter bootstrap? 1)Add the fonts folder inside the assets 2)add the below code for app/assets/styleheets/application.css @font-face { font-family: 'font_name'; src: url('../assets/font_file_name.otf'); } body{ font-family: 'font_name'; }