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