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