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