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