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