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