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