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