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