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