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