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