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