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