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