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