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