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