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