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