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