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