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