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