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