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