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