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