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