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