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