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