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