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