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