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