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