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