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