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