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