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