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