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