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