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