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