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