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