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