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