Use on the webTotal Use [ 5790 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c44a4f25e1f19f51265552428e3a049e?family=Bolts+SF" 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/c44a4f25e1f19f51265552428e3a049e?family=Bolts+SF);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Bolts SF";
src: url("https://db.onlinewebfonts.com/t/c44a4f25e1f19f51265552428e3a049e.eot");
src: url("https://db.onlinewebfonts.com/t/c44a4f25e1f19f51265552428e3a049e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c44a4f25e1f19f51265552428e3a049e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c44a4f25e1f19f51265552428e3a049e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c44a4f25e1f19f51265552428e3a049e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c44a4f25e1f19f51265552428e3a049e.svg#Bolts SF")format("svg");
}
2CSS rules to specify fonts
font-family: "Bolts SF";