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