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