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