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