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