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