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