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