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