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