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