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