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