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