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