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