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