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