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