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