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