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