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