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