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