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