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