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