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