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