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