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