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