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