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