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