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