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