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