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