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