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