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