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