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