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