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