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