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