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