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