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