Use on the webTotal Use [ 4434 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/fb66948ae35f2e1a0444a2a2fd2f1b25?family=bootstrap-icons" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/fb66948ae35f2e1a0444a2a2fd2f1b25?family=bootstrap-icons);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "bootstrap-icons";
src: url("https://db.onlinewebfonts.com/t/fb66948ae35f2e1a0444a2a2fd2f1b25.eot");
src: url("https://db.onlinewebfonts.com/t/fb66948ae35f2e1a0444a2a2fd2f1b25.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/fb66948ae35f2e1a0444a2a2fd2f1b25.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/fb66948ae35f2e1a0444a2a2fd2f1b25.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/fb66948ae35f2e1a0444a2a2fd2f1b25.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/fb66948ae35f2e1a0444a2a2fd2f1b25.svg#bootstrap-icons")format("svg");
}
2CSS rules to specify fonts
font-family: "bootstrap-icons";