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