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