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