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