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