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