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