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