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