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