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