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