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