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