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