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