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