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