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