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