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