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